On Wed, Mar 9, 2011 at 1:05 PM, William Pitcock <[email protected]> wrote: > __USE_BSD means that it's just an API that was present in the BSD4.3 > UNIX distribution, but is not formally part of POSIX. You don't > *really* need __USE_BSD defined, but if you want to define it, you can > do it like this: > > #define __USE_BSD /* usleep() */ > #include <unistd.h>
No, double _ defines are internal to the library. Use _BSD_SOURCE or _XOPEN_SOURCE instead. _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
