dux-kernel-lacks-mem-functions-20011016

from report from jimmy@e.kth.se

you can tell how many people are using openafs on digital unix/tru64. sigh.
This commit is contained in:
Derrick Brashear 2001-10-17 04:06:22 +00:00
parent d4c039ce1a
commit 50b3a0fb22
2 changed files with 8 additions and 0 deletions

View File

@ -102,6 +102,10 @@ enum vcexcl {NONEXCL, EXCL};
#include <net/net_globals.h> #include <net/net_globals.h>
#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */ #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
#define memset(A, B, S) bzero(A, S)
#define memcpy(B, A, S) bcopy(A, B, S)
#define memcmp(A, B, S) bcmp(A, B, S)
#endif /* _KERNEL */ #endif /* _KERNEL */
#endif /* AFS_PARAM_H */ #endif /* AFS_PARAM_H */

View File

@ -103,6 +103,10 @@ enum vcexcl {NONEXCL, EXCL};
#include <net/net_globals.h> #include <net/net_globals.h>
#endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */ #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
#define memset(A, B, S) bzero(A, S)
#define memcpy(B, A, S) bcopy(A, B, S)
#define memcmp(A, B, S) bcmp(A, B, S)
#endif /* _KERNEL */ #endif /* _KERNEL */
#endif /* AFS_PARAM_H */ #endif /* AFS_PARAM_H */