mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Fix incorrect include protection
This commit is contained in:
parent
966bd267c5
commit
0764df1276
2 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ pkgdatadir = $(datarootdir)/qfcc/include/QF
|
||||||
|
|
||||||
include_qf= \
|
include_qf= \
|
||||||
alloc.h bspfile.h cbuf.h cdaudio.h checksum.h clip_hull.h cmd.h \
|
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 \
|
console.h crc.h csqc.h cvar.h darray.h dstring.h draw.h gib.h hash.h \
|
||||||
idparse.h image.h in_event.h info.h input.h iqm.h joystick.h keys.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 \
|
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 \
|
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
|
#ifndef __darray_h
|
||||||
#define __pr_type_h
|
#define __darray_h
|
||||||
|
|
||||||
/** \defgroup darray Dynamic Arrays
|
/** \defgroup darray Dynamic Arrays
|
||||||
\ingroup utils
|
\ingroup utils
|
||||||
|
@ -298,4 +298,4 @@
|
||||||
|
|
||||||
///@}
|
///@}
|
||||||
|
|
||||||
#endif//__pr_type_h
|
#endif//__darray_h
|
||||||
|
|
Loading…
Reference in a new issue