Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / config / param.i386_obsd50.h
CommitLineData
805e021f
CE
1/*
2 * Thanks to Jim Rees and University of Michigan CITI, for the initial
3 * OpenBSD porting work.
4 */
5
6#ifndef AFS_I386_PARAM_H
7#define AFS_I386_PARAM_H
8
9#define SYS_NAME "i386_obsd50"
10#define SYS_NAME_ID SYS_NAME_ID_i386_obsd50
11
12#define AFS_X86_XBSD_ENV 1
13#define AFS_X86_ENV 1
14#define AFSLITTLE_ENDIAN 1
15
16#ifdef _KERNEL
17void bcopy(const void *, void *, size_t);
18
19static inline void *memmove(void *dst, const void *src, size_t len) {
20 bcopy(src, dst, len);
21 return(dst);
22}
23#endif
24
25#endif /* AFS_I386_PARAM_H */