git://git.openafs.org
/
openafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
ddd9554
)
fs-include-string-function-prototypes-20030422
author
Chas Williams
<chas@cmf.nrl.navy.mil>
Tue, 22 Apr 2003 16:45:40 +0000 (16:45 +0000)
committer
Derrick Brashear
<shadow@dementia.org>
Tue, 22 Apr 2003 16:45:40 +0000 (16:45 +0000)
so fs won't segfault on ia64 linux
src/venus/fs.c
patch
|
blob
|
history
diff --git
a/src/venus/fs.c
b/src/venus/fs.c
index
18ac2a1
..
3fed75d
100644
(file)
--- a/
src/venus/fs.c
+++ b/
src/venus/fs.c
@@
-51,6
+51,13
@@
RCSID("$Header$");
#include <afs/cmd.h>
#include <afs/afsutil.h>
#include <stdlib.h>
+#ifdef HAVE_STRING_H
+#include <string.h>
+#else
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
+#endif
#include <assert.h>
#include <afs/ptclient.h>