diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-04-24 04:09:37 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-04-24 04:09:37 +0000 |
commit | 27173b205f05aebd9226fa43fc40424bf8e79a72 (patch) | |
tree | b16633f1a00d0dc36a20149316d3dca1666b9a65 | |
parent | 4547fde9f5a2ab1445ad273b53a83cdaccb23be4 (diff) | |
download | samba-27173b205f05aebd9226fa43fc40424bf8e79a72.tar.gz samba-27173b205f05aebd9226fa43fc40424bf8e79a72.tar.bz2 samba-27173b205f05aebd9226fa43fc40424bf8e79a72.zip |
prototypes for some systems that don't have them
(This used to be commit 2dde9f711979c04cd02107447395a55307f7a30a)
-rw-r--r-- | source3/include/includes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 1dfebcea78..becf7e5e39 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -943,6 +943,14 @@ size_t strlcat(char *d, const char *s, size_t bufsize); int ftruncate(int f,long l); #endif +#ifndef HAVE_STRNDUP +char *strndup(const char *s, size_t n); +#endif + +#ifndef HAVE_STRNLEN +size_t strnlen(const char *s, size_t n); +#endif + #ifndef HAVE_STRTOUL unsigned long strtoul(const char *nptr, char **endptr, int base); #endif |