Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/net-snmp/../nlist.h
Real path: /usr/include/nlist.h
Zurück
/* * Copyright (c) 1988, 2016, Oracle and/or its affiliates. All rights reserved. */ /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ #ifndef _NLIST_H #define _NLIST_H #include <sys/types.h> #ifdef __cplusplus extern "C" { #endif struct nlist { char *n_name; /* symbol name */ long n_value; /* value of symbol */ short n_scnum; /* section number */ unsigned short n_type; /* type and derived type */ char n_sclass; /* storage class */ char n_numaux; /* number of aux. entries */ }; extern int nlist(const char *, struct nlist *); extern int mem_nlist(char *, size_t, struct nlist *); #ifdef __cplusplus } #endif #endif /* _NLIST_H */