summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorewt <devnull@localhost>1997-05-02 15:47:37 +0000
committerewt <devnull@localhost>1997-05-02 15:47:37 +0000
commit250bbe29e17e638065df09a99f71bffdb57c2b02 (patch)
tree54ca8425f2f474f884f60a1f7002df840b970129 /misc
parent4a07d308e2b5107de891028a4703ceff1b78a979 (diff)
downloadlibrpm-tizen-250bbe29e17e638065df09a99f71bffdb57c2b02.tar.gz
librpm-tizen-250bbe29e17e638065df09a99f71bffdb57c2b02.tar.bz2
librpm-tizen-250bbe29e17e638065df09a99f71bffdb57c2b02.zip
Use strings.h on SCO (there's probably a better way of doing this, but this
will work so why bother?). CVS patchset: 1590 CVS date: 1997/05/02 15:47:37
Diffstat (limited to 'misc')
-rw-r--r--misc/miscfn.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/miscfn.h b/misc/miscfn.h
index e543069df..3f75431fa 100644
--- a/misc/miscfn.h
+++ b/misc/miscfn.h
@@ -31,4 +31,8 @@ char *realpath(char *path, char resolved_path[]);
#define S_ISSOCK(mode) ((mode) & S_IFSOCK)
#endif
+#if NEED_STRINGS_H
+#include <strings.h>
+#endif
+
#endif