diff options
author | 2002-03-15 18:18:09 +0000 | |
---|---|---|
committer | 2002-03-15 18:18:09 +0000 | |
commit | f3a66a4fa8f2b78dec13521faa2ab7cd801d36bc (patch) | |
tree | e2c30fd8b92621a6d31752f57fa331fb17a3d41c | |
parent | Add a command 'sym_load' to load a symbol table at some offset. (diff) | |
download | wireguard-openbsd-f3a66a4fa8f2b78dec13521faa2ab7cd801d36bc.tar.xz wireguard-openbsd-f3a66a4fa8f2b78dec13521faa2ab7cd801d36bc.zip |
Kill some #if __STDC__ used with 8bit function args; we live in an ANSI world
-rw-r--r-- | sys/isofs/cd9660/iso.h | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/isofs/cd9660/iso.h b/sys/isofs/cd9660/iso.h index 89b5650a605..3656b8827ac 100644 --- a/sys/isofs/cd9660/iso.h +++ b/sys/isofs/cd9660/iso.h @@ -1,4 +1,4 @@ -/* $OpenBSD: iso.h,v 1.11 2002/03/14 01:27:03 millert Exp $ */ +/* $OpenBSD: iso.h,v 1.12 2002/03/15 18:18:09 millert Exp $ */ /* $NetBSD: iso.h,v 1.20 1997/07/07 22:45:34 cgd Exp $ */ /*- @@ -190,24 +190,14 @@ static __inline int isonum_733(u_char *) __attribute__ ((__unused__)); /* 7.1.1: unsigned char */ static __inline int -#if __STDC__ isonum_711(u_char *p) -#else -isonum_711(p) - u_char *p; -#endif { return *p; } /* 7.1.2: signed(?) char */ static __inline int -#if __STDC__ isonum_712(char *p) -#else -isonum_712(p) - char *p; -#endif { return *p; } @@ -238,12 +228,7 @@ isonum_722(p) /* 7.2.3: unsigned both-endian (little, then big) 16-bit value */ static __inline int -#if __STDC__ isonum_723(u_char *p) -#else -isonum_723(p) - u_char *p; -#endif { #if defined(UNALIGNED_ACCESS) && \ ((BYTE_ORDER == LITTLE_ENDIAN) || (BYTE_ORDER == BIG_ENDIAN)) @@ -283,12 +268,7 @@ isonum_732(p) /* 7.3.3: unsigned both-endian (little, then big) 32-bit value */ static __inline int -#if __STDC__ isonum_733(u_char *p) -#else -isonum_733(p) - u_char *p; -#endif { #if defined(UNALIGNED_ACCESS) && \ ((BYTE_ORDER == LITTLE_ENDIAN) || (BYTE_ORDER == BIG_ENDIAN)) |