Browse Source

include the missing return type for _warn

OPENBSD_5_8
Brent Cook 8 years ago
parent
commit
8f13cf4a96
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      include/err.h

+ 2
- 2
include/err.h View File

@ -19,10 +19,10 @@
extern char *__progname;
static inline _warn(int err, const char *format, ...)
static inline void _warn(int err, const char *format, ...)
__attribute__ ((__format__ (__printf__, 2, 3)));
static inline _warn(int err, const char *format, ...)
static inline void _warn(int err, const char *format, ...)
{
va_list args;
va_start(args, format);


Loading…
Cancel
Save