remove compiler.h include from tryinline.c add #ifdef INTERNAL to files included by n.c and ent.c so they don't need headers in libowfat/ and can compile without an installed or build libowfat
8 lines
162 B
C
8 lines
162 B
C
#ifndef INTERNAL
|
|
#include <libowfat/scan.h>
|
|
#endif
|
|
|
|
size_t scan_ulong(const char* src,unsigned long int* dest) {
|
|
return scan_ulongn(src,((size_t)-1)/2,dest);
|
|
}
|