]> Zhao Yanbai Git Server - minix.git/commitdiff
easprintf() and evasprintf()
authorArun Thomas <arun@minix3.org>
Sat, 21 Aug 2010 13:07:25 +0000 (13:07 +0000)
committerArun Thomas <arun@minix3.org>
Sat, 21 Aug 2010 13:07:25 +0000 (13:07 +0000)
include/util.h
lib/libutil/efun.c

index 69f7cabd473ef9d007a3d3d314604fe3e38f6f85..bf8ec2d86197ba33b00dba115dccb2ee2d9f3b0c 100644 (file)
@@ -129,13 +129,11 @@ void              *emalloc(size_t);
 void           *erealloc(void *, size_t);
 FILE           *efopen(const char *, const char *);
 
-#ifndef __minix
 int            easprintf(char ** __restrict, const char * __restrict, ...)
     __attribute__((__format__(__printf__, 2, 3)));
 int            evasprintf(char ** __restrict, const char * __restrict,
     _BSD_VA_LIST_)
     __attribute__((__format__(__printf__, 2, 0)));
-#endif
 __END_DECLS
 
 #endif /* !_UTIL_H_ */
index 175e7c602b85dd4bb8cafde5fb58c5ed6f1cc0be..ef2c1b386d126e792356228a83c447013dd26425 100644 (file)
@@ -139,7 +139,6 @@ efopen(const char *p, const char *m)
        return fp;
 }
 
-#ifndef _MINIX
 int
 easprintf(char ** __restrict ret, const char * __restrict format, ...)
 {
@@ -160,4 +159,3 @@ evasprintf(char ** __restrict ret, const char * __restrict format, va_list ap)
                (*efunc)(1, "Cannot format string");
        return rv;
 }
-#endif