summaryrefslogtreecommitdiff
path: root/strlcpy.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-10-28 14:12:54 +1000
committerDamien Miller <djm@mindrot.org>1999-10-28 14:12:54 +1000
commite413cba972feb60d3d4d104c0c93320435610d1b (patch)
treed712398819471c56f89ea3fc7a4fa5fb8db38690 /strlcpy.h
parent062307657e30c9b970514eb53b4b743f9d571231 (diff)
Disabled code based on autoconf tests
Diffstat (limited to 'strlcpy.h')
-rw-r--r--strlcpy.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/strlcpy.h b/strlcpy.h
index 824df300c..9afbd39c5 100644
--- a/strlcpy.h
+++ b/strlcpy.h
@@ -1,4 +1,9 @@
1#ifndef _STRLCPY_H 1#ifndef _STRLCPY_H
2#define _STRLCPY_H 2#define _STRLCPY_H
3
4#include "config.h"
5#ifndef HAVE_STRLCPY
3size_t strlcpy(char *dst, const char *src, size_t siz); 6size_t strlcpy(char *dst, const char *src, size_t siz);
7#endif /* !HAVE_STRLCPY */
8
4#endif /* _STRLCPY_H */ 9#endif /* _STRLCPY_H */