2 /* This section for kernel libafs compiles only */
5 * Copyright 2000, International Business Machines Corporation and others.
8 * This software has been released under the terms of the IBM Public
9 * License. For details, see the LICENSE file in the top-level source
10 * directory or online at http://www.openafs.org/dl/license10.html
17 #define AFS_NT40_ENV 1
18 #define AFSLITTLE_ENDIAN 1
19 #define AFS_64BIT_IOPS_ENV 1
20 #define AFS_NAMEI_ENV 1 /* User space interface to file system */
21 #define AFS_HAVE_STATVFS 0 /* System doesn't support statvfs */
22 #define AFS_KRB5_ERROR_ENV 1 /* fetch_krb5_error_message() available in afsutil.lib */
24 #include <afs/afs_sysnames.h>
25 #define SYS_NAME_ID SYS_NAME_ID_i386_nt35
32 * NT makes size_t a typedef for unsigned int (e.g. in <stddef.h>)
33 * and has no typedef for ssize_t (a signed size_t).
34 * So, we make our own.
38 /* these macros define Unix-style functions missing in VC++5.0/NT4.0 */
39 #define MAXPATHLEN _MAX_PATH
42 #define memset(A, 0, S) memset((void*)(A), 0, (size_t)(S))
43 #define memcpy(B, A, S) memcpy((void*)(B), (void*)(A), (size_t)(S))
44 /* There is a minor syntactic difference between memcmp and bcmp... */
45 #define memcmp(A, B, S) (memcmp((void*)(A), (void*)(B), (size_t)(S)) ? 1 : 0)
46 #define strchr(s, c) strchr(s, c)
47 #define strrchr(s, c) strrchr(s, c)
49 #define strcasecmp(s1,s2) _stricmp(s1,s2)
50 #define strncasecmp(s1,s2,n) _strnicmp(s1,s2,n)
51 #define sleep(seconds) Sleep((seconds) * 1000)
52 #define fsync(fileno) _commit(fileno)
53 #define ftruncate(fd, size) _chsize((fd), (long)(size))
54 #define strtoll(str, cp, base) strtoi64((str), (cp), (base))
55 #define strtoull(str, cp, base) strtoui64((str), (cp), (base))
57 #define random() rand()
58 #define srandom(a) srand(a)
60 #define popen(cmd, mode) _popen((cmd), (mode))
61 #define pclose(stream) _pclose(stream)
62 typedef char *caddr_t;
64 #define pipe(fdp) _pipe(fdp, 4096, _O_BINARY)
66 #define snprintf _snprintf
67 #endif /* AFS_PARAM_H */
69 #else /* !defined(UKERNEL) */
71 /* This section for user space compiles only */
74 #endif /* !defined(UKERNEL) */