summaryrefslogtreecommitdiff
path: root/src/init2.h
blob: ba18f2d70a5918cbf39a5f26f085b27b90b4e4cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

// C linkage required for these functions since main-* code uses them.
#ifdef __cplusplus
extern "C" {
#endif

extern void init_file_paths(char *path);
extern void init_angband(void);

#ifdef __cplusplus
} // extern "C"
#endif