diff options
author | mp <mp@FreeBSD.org> | 2001-07-31 15:49:50 +0000 |
---|---|---|
committer | mp <mp@FreeBSD.org> | 2001-07-31 15:49:50 +0000 |
commit | 9cd078f86a3f80bf532f348e1f4722937f91c0b6 (patch) | |
tree | 70b3684d3d88935c4fc33753a0351f654e2f9ed6 /lib | |
parent | 09d5fb71b92aaa23b0684d38eed9c37cbca3baba (diff) | |
download | FreeBSD-src-9cd078f86a3f80bf532f348e1f4722937f91c0b6.zip FreeBSD-src-9cd078f86a3f80bf532f348e1f4722937f91c0b6.tar.gz |
Make include file consistent with the rest of libstand.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libstand/assert.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libstand/assert.c b/lib/libstand/assert.c index 4811528..a0b2cbf 100644 --- a/lib/libstand/assert.c +++ b/lib/libstand/assert.c @@ -26,9 +26,10 @@ * $FreeBSD$ */ -#include <stand.h> #include <assert.h> +#include "stand.h" + void __assert(const char *file, int line, const char *expression) { |