diff options
author | ed <ed@FreeBSD.org> | 2010-01-04 18:46:54 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2010-01-04 18:46:54 +0000 |
commit | f86eec131ecd8165dffb9b3c544d58e63f18a772 (patch) | |
tree | d106e248edca1c58f392addcda80876624a43297 /include | |
parent | 67e62f9811c64ba660c057a75391804b34f3f0cf (diff) | |
download | FreeBSD-src-f86eec131ecd8165dffb9b3c544d58e63f18a772.zip FreeBSD-src-f86eec131ecd8165dffb9b3c544d58e63f18a772.tar.gz |
This should read #if __BSD_VISIBLE instead of #ifdef __BSD_VISIBLE.
Diffstat (limited to 'include')
-rw-r--r-- | include/strings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/strings.h b/include/strings.h index 078ce1b..f272078 100644 --- a/include/strings.h +++ b/include/strings.h @@ -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; |