Add missing #ifndef _ASSERT_H_ protection against multiple inclusions

This commit is contained in:
phk 2007-12-01 18:56:50 +00:00
parent 7ad2ad4eca
commit 8df55e4f86

View File

@ -39,6 +39,9 @@
* $FreeBSD$
*/
#ifndef _ASSERT_H_
#define _ASSERT_H_
#include <sys/cdefs.h>
/*
@ -62,3 +65,4 @@
__BEGIN_DECLS
void __assert(const char *, const char *, int, const char *);
__END_DECLS
#endif /* !_ASSERT_H_ */