diff options
author | 2013-05-12 04:58:41 +0000 | |
---|---|---|
committer | 2013-05-12 04:58:41 +0000 | |
commit | 90426fa65e102ad9e62906111d9d667c50180669 (patch) | |
tree | 4d0a3dcdb18b51150d87f247b59ace77a6370c39 | |
parent | remove some weird editing blip; (diff) | |
download | wireguard-openbsd-90426fa65e102ad9e62906111d9d667c50180669.tar.xz wireguard-openbsd-90426fa65e102ad9e62906111d9d667c50180669.zip |
get NULL definition from stddef.h
-rw-r--r-- | usr.bin/sndiod/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/sndiod/utils.h b/usr.bin/sndiod/utils.h index 2b26f324f68..f108ed56c63 100644 --- a/usr.bin/sndiod/utils.h +++ b/usr.bin/sndiod/utils.h @@ -1,4 +1,4 @@ -/* $OpenBSD: utils.h,v 1.2 2012/12/07 08:04:58 ratchov Exp $ */ +/* $OpenBSD: utils.h,v 1.3 2013/05/12 04:58:41 ratchov Exp $ */ /* * Copyright (c) 2003-2012 Alexandre Ratchov <alex@caoua.org> * @@ -18,7 +18,7 @@ #ifndef UTILS_H #define UTILS_H -#include <sys/types.h> +#include <stddef.h> void log_puts(char *); void log_putx(unsigned long); |