You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libbsd/SOURCES/libbsd-cdefs.h

18 lines
293 B

#include <bits/wordsize.h>
#if __WORDSIZE == 32
# ifdef LIBBSD_OVERLAY
# include "sys/cdefs-32.h"
# else
# include "cdefs-32.h"
# endif
#elif __WORDSIZE == 64
# ifdef LIBBSD_OVERLAY
# include "sys/cdefs-64.h"
# else
# include "cdefs-64.h"
# endif
#else
# error "Unknown word size"
#endif