From: Robert Millan Date: Mon, 13 Feb 2006 20:45:13 +0000 (+0000) Subject: Use the same macro (_SYS_QUEUE_H) as for header protection X-Git-Tag: 0.0~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a8c1c864879b3162e1048ddcb3ad59540bb0e0e;p=thirdparty%2Flibbsd.git Use the same macro (_SYS_QUEUE_H) as for header protection This prevents collisions. --- diff --git a/include/bsd/queue.h b/include/bsd/queue.h index e31b26c..407f08b 100644 --- a/include/bsd/queue.h +++ b/include/bsd/queue.h @@ -30,8 +30,8 @@ * $FreeBSD: src/sys/sys/queue.h,v 1.58 2004/04/07 04:19:49 imp Exp $ */ -#ifndef _SYS_QUEUE_H_ -#define _SYS_QUEUE_H_ +#ifndef _SYS_QUEUE_H +#define _SYS_QUEUE_H #include @@ -550,4 +550,4 @@ void remque(void *a); #endif /* _KERNEL */ -#endif /* !_SYS_QUEUE_H_ */ +#endif /* !_SYS_QUEUE_H */