Updates to Tomato RAF including NGINX && PHP
[tomato.git] / release / src / router / snmp / include / net-snmp / agent / auto_nlist.h
blobf31d9b95b654fe9ebb8b7a8f5ab82d70dd03b7c2
1 /*
2 * auto_nlist.h
3 */
4 #ifndef AUTO_NLIST_H
5 #define AUTO_NLIST_H
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 #if defined(irix6) && defined(IRIX64)
11 #define nlist nlist64
12 #endif
14 #ifdef CAN_USE_NLIST
15 int auto_nlist(const char *, char *, int);
16 long auto_nlist_value(const char *);
17 int KNLookup(struct nlist *, int, char *, int);
18 #else
19 int auto_nlist_noop(void);
20 # define auto_nlist(x,y,z) auto_nlist_noop()
21 # define auto_nlist_value(z) auto_nlist_noop()
22 # define KNLookup(w,x,y,z) auto_nlist_noop()
23 #endif
25 #ifdef __cplusplus
27 #endif
28 #endif