mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
[headers] Fix some inconsistent include guards
This commit is contained in:
parent
eb0aa2dcea
commit
60348ab458
3 changed files with 11 additions and 9 deletions
|
@ -24,8 +24,8 @@
|
|||
Boston, MA 02111-1307, USA
|
||||
|
||||
*/
|
||||
#ifndef __expr_h
|
||||
#define __expr_h
|
||||
#ifndef __QF_expr_h
|
||||
#define __QF_expr_h
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -140,4 +140,4 @@ extern exprtype_t cexpr_plitem;
|
|||
extern binop_t cexpr_struct_binops[];
|
||||
extern binop_t cexpr_struct_pointer_binops[];
|
||||
|
||||
#endif
|
||||
#endif//__QF_expr_h
|
||||
|
|
|
@ -24,8 +24,8 @@
|
|||
Boston, MA 02111-1307, USA
|
||||
|
||||
*/
|
||||
#ifndef __cmem_h
|
||||
#define __cmem_h
|
||||
#ifndef __QF_cmem_h
|
||||
#define __QF_cmem_h
|
||||
|
||||
#include "QF/qtypes.h"
|
||||
|
||||
|
@ -115,4 +115,4 @@ void delete_memsuper (memsuper_t *super);
|
|||
void *cmemalloc (memsuper_t *super, size_t size);
|
||||
void cmemfree (memsuper_t *super, void *mem);
|
||||
|
||||
#endif//__cmem_h
|
||||
#endif//__QF_cmem_h
|
||||
|
|
|
@ -28,8 +28,10 @@
|
|||
|
||||
*/
|
||||
|
||||
#ifndef __darray_h
|
||||
#define __darray_h
|
||||
#ifndef __QF_darray_h
|
||||
#define __QF_darray_h
|
||||
|
||||
#include "QF/sys.h"
|
||||
|
||||
/** \defgroup darray Dynamic Arrays
|
||||
\ingroup utils
|
||||
|
@ -363,4 +365,4 @@
|
|||
|
||||
///@}
|
||||
|
||||
#endif//__darray_h
|
||||
#endif//__QF_darray_h
|
||||
|
|
Loading…
Reference in a new issue