1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #if !defined LT__GLIBC_H
- #define LT__GLIBC_H 1
- #if defined LT_CONFIG_H
- # include LT_CONFIG_H
- #else
- # include <config.h>
- #endif
- #if !defined HAVE_ARGZ_H || !defined HAVE_WORKING_ARGZ
- # undef argz_append
- # define argz_append lt__argz_append
- # undef argz_create_sep
- # define argz_create_sep lt__argz_create_sep
- # undef argz_insert
- # define argz_insert lt__argz_insert
- # undef argz_next
- # define argz_next lt__argz_next
- # undef argz_stringify
- # define argz_stringify lt__argz_stringify
- # include <lt__argz.h>
- #else
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <argz.h>
- #ifdef __cplusplus
- }
- #endif
- #endif
- # define slist_concat lt__slist_concat
- # define slist_cons lt__slist_cons
- # define slist_delete lt__slist_delete
- # define slist_remove lt__slist_remove
- # define slist_reverse lt__slist_reverse
- # define slist_sort lt__slist_sort
- # define slist_tail lt__slist_tail
- # define slist_nth lt__slist_nth
- # define slist_find lt__slist_find
- # define slist_length lt__slist_length
- # define slist_foreach lt__slist_foreach
- # define slist_box lt__slist_box
- # define slist_unbox lt__slist_unbox
- #include <slist.h>
- #endif
|