summaryrefslogtreecommitdiff
path: root/laden/string.h
diff options
context:
space:
mode:
authormarcus <marcus>2003-09-07 22:13:04 +0000
committermarcus <marcus>2003-09-07 22:13:04 +0000
commit3e7717ecf8c191a5e3c2fd865df18a20a407dfdd (patch)
tree8d34cff9d12a5022825f1acde56f06be260d854f /laden/string.h
parent103f3951ba2e4ae7c1c39ad9c7d71a1df23586c9 (diff)
Small cleanups.
Diffstat (limited to 'laden/string.h')
-rw-r--r--laden/string.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/laden/string.h b/laden/string.h
index 8ccef38..e9eb8c9 100644
--- a/laden/string.h
+++ b/laden/string.h
@@ -18,9 +18,13 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
-
+#ifndef _STRING_H
+#define _STRING_H 1
+
int strcmp (const char *s1, const char *s2);
void *memcpy (void *dest, const void *src, int n);
void *memset (void *s, int c, int n);
+
+#endif /* _STRING_H */