diff options
Diffstat (limited to 'sys/arch/mac68k/dev/if_sn.c')
-rw-r--r-- | sys/arch/mac68k/dev/if_sn.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/sys/arch/mac68k/dev/if_sn.c b/sys/arch/mac68k/dev/if_sn.c index 391faa50f52..5ddf9b36817 100644 --- a/sys/arch/mac68k/dev/if_sn.c +++ b/sys/arch/mac68k/dev/if_sn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sn.c,v 1.43 2006/04/14 09:36:49 martin Exp $ */ +/* $OpenBSD: if_sn.c,v 1.44 2006/04/16 20:37:23 miod Exp $ */ /* $NetBSD: if_sn.c,v 1.13 1997/04/25 03:40:10 briggs Exp $ */ /* @@ -82,23 +82,6 @@ struct cfdriver sn_cd = { NULL, "sn", DV_IFNET }; -#undef assert -#undef _assert - -#ifdef NDEBUG -#define assert(e) ((void)0) -#define _assert(e) ((void)0) -#else -#define _assert(e) assert(e) -#ifdef __STDC__ -#define assert(e) ((e) ? (void)0 : __assert("sn ", __FILE__, __LINE__, #e)) -#else /* PCC */ -#define assert(e) ((e) ? (void)0 : __assert("sn "__FILE__, __LINE__, "e")) -#endif -#endif - -int sndebug = 0; - /* * SONIC buffers need to be aligned 16 or 32 bit aligned. * These macros calculate and verify alignment. |