]> git.cameronkatri.com Git - apple_cmds.git/blob - system_cmds/gcore.tproj/convert.h
Merge branch 'apple'
[apple_cmds.git] / system_cmds / gcore.tproj / convert.h
1 /*
2 * Copyright (c) 2016 Apple Inc. All rights reserved.
3 */
4
5 #include "options.h"
6
7 #include <stdbool.h>
8
9 #ifndef _CONVERT_H
10 #define _CONVERT_H
11
12 #ifdef CONFIG_GCORE_FREF
13 extern int gcore_fref(int);
14 #endif
15
16 #ifdef CONFIG_GCORE_MAP
17 extern int gcore_map(int);
18 #endif
19
20 #ifdef CONFIG_GCORE_CONV
21 extern int gcore_conv(int, const char *, bool, int);
22 #endif
23
24 #endif /* _CONVERT_H */