Add missing #ifndef _ASSERT_H_ protection against multiple inclusions

This commit is contained in:
Poul-Henning Kamp 2007-12-01 18:56:50 +00:00
parent 19ab4b35fb
commit 22ac70fcd3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=174131

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_ */