diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2008-11-03 10:22:19 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2008-11-03 10:22:19 +0000 |
commit | 4a723bd20c5f9bd0deff279308fc49660312d4c7 (patch) | |
tree | 1736b8d9ed54635f5f6a78cea9b9e57e008ff489 /include/strings.h | |
parent | 6f41f432e166a3d94cd25a84c7f4ff2bfedd3206 (diff) | |
download | src-test2-4a723bd20c5f9bd0deff279308fc49660312d4c7.tar.gz src-test2-4a723bd20c5f9bd0deff279308fc49660312d4c7.zip |
Notes
Diffstat (limited to 'include/strings.h')
-rw-r--r-- | include/strings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/strings.h b/include/strings.h index 4b19d0ecc665..f6a002447cdc 100644 --- a/include/strings.h +++ b/include/strings.h @@ -44,8 +44,10 @@ void bzero(void *, size_t); /* LEGACY */ int ffs(int) __pure2; #ifdef __BSD_VISIBLE int ffsl(long) __pure2; +int ffsll(long long) __pure2; int fls(int) __pure2; int flsl(long) __pure2; +int flsll(long long) __pure2; #endif char *index(const char *, int) __pure; /* LEGACY */ char *rindex(const char *, int) __pure; /* LEGACY */ |