]> mj.ucw.cz Git - libucw.git/commitdiff
fixed missing includes
authorRobert Spalek <robert@ucw.cz>
Thu, 16 May 2002 08:47:12 +0000 (08:47 +0000)
committerRobert Spalek <robert@ucw.cz>
Thu, 16 May 2002 08:47:12 +0000 (08:47 +0000)
lib/fastbuf.h
lib/finger.c
lib/profile.h

index a796a3c749b4ced91e835907359c7c9e2b343bbd..f644cc8171547e4e12256de3eb92812cc776679f 100644 (file)
@@ -11,6 +11,8 @@
 #include <stdio.h>
 #endif
 
+#include <string.h>
+
 #include "lib/unaligned.h"
 
 /*
index 6420534984dd706bd3a91ab4cd6d09a77a42a918..bb905daba8709f06b07f5bea45da81ae0d13354b 100644 (file)
@@ -23,6 +23,8 @@
 #include "lib/index.h"
 #include "lib/md5.h"
 
+#include <string.h>
+
 void
 fingerprint(byte *string, struct fingerprint *fp)
 {
index 426b3a30512fdeba73d56071e3568e114cb994ee..8acb34abc30eefd4eff1c426775fbde630f526c7 100644 (file)
@@ -17,6 +17,8 @@
  *             printf("%s\n", PROF_STRING(&cnt));
  */
 
+#include <string.h>
+
 /* PROFILE_TOD: gettimeofday() profiler */
 
 struct prof_tod {