mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
Fix incorrect include protection
This commit is contained in:
parent
0cb04dc490
commit
cb70dc7212
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = foreign
|
|||
pkgincludedir = $(includedir)/QF
|
||||
nobase_pkginclude_HEADERS = \
|
||||
alloc.h bspfile.h cbuf.h cdaudio.h checksum.h clip_hull.h cmd.h \
|
||||
console.h crc.h csqc.h cvar.h dstring.h draw.h gib.h hash.h hl.h \
|
||||
console.h crc.h csqc.h cvar.h darray.h dstring.h draw.h gib.h hash.h hl.h \
|
||||
idparse.h image.h in_event.h info.h input.h iqm.h joystick.h keys.h \
|
||||
link.h llist.h locs.h mathlib.h mdfour.h mersenne.h model.h modelgen.h \
|
||||
msg.h object.h pak.h pakfile.h pcx.h png.h plugin.h pr_comp.h pr_debug.h \
|
||||
|
|
|
@ -28,8 +28,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#ifndef __pr_type_h
|
||||
#define __pr_type_h
|
||||
#ifndef __darray_h
|
||||
#define __darray_h
|
||||
|
||||
/** \defgroup darray Dynamic Arrays
|
||||
\ingroup utils
|
||||
|
@ -298,4 +298,4 @@
|
|||
|
||||
///@}
|
||||
|
||||
#endif//__pr_type_h
|
||||
#endif//__darray_h
|
||||
|
|
Loading…
Reference in a new issue