diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-07-09 13:52:42 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2004-07-09 13:52:42 +0000 |
| commit | fd078b3dd6bcd87eaaebd3644bb5e8a7ca30208c (patch) | |
| tree | 4d2d66b0c8e3f7f3014fe4f812376f27e00ccfea | |
| parent | c8b9c2d913a72422731d339e050c359b7b29345a (diff) | |
Notes
| -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 895a6a4ed359..84f5b5e1965f 100644 --- a/include/strings.h +++ b/include/strings.h @@ -42,9 +42,11 @@ int bcmp(const void *, const void *, size_t); /* LEGACY */ void bcopy(const void *, void *, size_t); /* LEGACY */ void bzero(void *, size_t); /* LEGACY */ int ffs(int); +#ifdef __BSD_VISIBLE int ffsl(long); int fls(int); int flsl(long); +#endif char *index(const char *, int); /* LEGACY */ char *rindex(const char *, int); /* LEGACY */ int strcasecmp(const char *, const char *); |
