diff options
author | Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com> | 2014-06-25 18:08:22 +0200 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-07-06 08:41:07 -0700 |
commit | 25f1134b4a2bd8018f153158cfc7c9ae255b5d6e (patch) | |
tree | 4cdd28b7a3ac29346c6f6f0a88d6fb34d2c96f2a /Xfuncs.h | |
parent | 068fd2cb19b6c0434f63b427158506e2ec3c6206 (diff) |
Bug #80528: make it build on AIX
https://bugs.freedesktop.org/show_bug.cgi?id=80528
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'Xfuncs.h')
-rw-r--r-- | Xfuncs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -37,14 +37,14 @@ void bcopy(); void bzero(); int bcmp(); # else -# if defined(SYSV) && !defined(__SCO__) && !defined(__sun) && !defined(__UNIXWARE__) +# if defined(SYSV) && !defined(__SCO__) && !defined(__sun) && !defined(__UNIXWARE__) && !defined(_AIX) # include <memory.h> void bcopy(); # define bzero(b,len) memset(b, 0, len) # define bcmp(b1,b2,len) memcmp(b1, b2, len) # else # include <string.h> -# if defined(__SCO__) || defined(__sun) || defined(__UNIXWARE__) || defined(__CYGWIN__) +# if defined(__SCO__) || defined(__sun) || defined(__UNIXWARE__) || defined(__CYGWIN__) || defined(_AIX) # include <strings.h> # endif # define _XFUNCS_H_INCLUDED_STRING_H |