diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-05-12 04:58:42 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2013-05-12 04:58:42 +0000 |
commit | c7e8d43366e0033b2630329ab1993bdd06bebcd6 (patch) | |
tree | 8824ee2102326a7fa420a7f55f78483074b5b23b /usr.bin | |
parent | d20228d4707083db80533d7b300fc46658df4570 (diff) |
get NULL definition from stddef.h
Diffstat (limited to 'usr.bin')
-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); |