This should read #if __BSD_VISIBLE instead of #ifdef __BSD_VISIBLE.

This commit is contained in:
Ed Schouten 2010-01-04 18:46:54 +00:00
parent f5366806c6
commit f40ea8b948
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=201525

View File

@ -46,7 +46,7 @@ void bzero(void *, size_t); /* LEGACY */
#if __XSI_VISIBLE
int ffs(int) __pure2;
#endif
#ifdef __BSD_VISIBLE
#if __BSD_VISIBLE
int ffsl(long) __pure2;
int ffsll(long long) __pure2;
int fls(int) __pure2;