added files
[bcm963xx.git] / userapps / opensource / net-snmp / include / net-snmp / agent / auto_nlist.h
1 /*
2  * auto_nlist.h
3  */
4 #ifndef AUTO_NLIST_H
5 #define AUTO_NLIST_H
6 #ifdef __cplusplus
7 extern          "C" {
8 #endif
9
10 #if defined(irix6) && defined(IRIX64)
11 #define nlist nlist64
12 #endif
13
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
24
25 #ifdef __cplusplus
26 }
27 #endif
28 #endif