diff options
author | Nils Durner <durner@gnunet.org> | 2005-08-09 18:56:53 +0000 |
---|---|---|
committer | Nils Durner <durner@gnunet.org> | 2005-08-09 18:56:53 +0000 |
commit | 927c4677c88a46ca4f577e3e8230f1bdf7c06b30 (patch) | |
tree | 7e8dbbb9f6985c1b0db9204a7b622e8311d41d15 | |
parent | 9cba24c2c6c31d5e5518220fb78b1a12e9f46fea (diff) | |
download | gnunet-gtk-927c4677c88a46ca4f577e3e8230f1bdf7c06b30.tar.gz gnunet-gtk-927c4677c88a46ca4f577e3e8230f1bdf7c06b30.zip |
up
-rw-r--r-- | src/include/plibc.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/plibc.h b/src/include/plibc.h index 6fce604f..5a57ab3f 100644 --- a/src/include/plibc.h +++ b/src/include/plibc.h | |||
@@ -439,20 +439,21 @@ size_t strnlen (const char *str, size_t maxlen); | |||
439 | #define RANDOM() random() | 439 | #define RANDOM() random() |
440 | #define READLINK(p, b, s) readlink(p, b, s) | 440 | #define READLINK(p, b, s) readlink(p, b, s) |
441 | #define LSTAT(p, b) lstat(p, b) | 441 | #define LSTAT(p, b) lstat(p, b) |
442 | #define PRINTF(f, ...) printf(f , __VA_ARGS__) | 442 | #define PRINTF printf |
443 | #define FPRINTF(fil, fmt, ...) fprintf(fil, fmt, __VA_ARGS__) | 443 | #define FPRINTF fprintf |
444 | #define VPRINTF(f, a) vprintf(f, a) | 444 | #define VPRINTF(f, a) vprintf(f, a) |
445 | #define VFPRINTF(s, f, a) vfprintf(s, f, a) | 445 | #define VFPRINTF(s, f, a) vfprintf(s, f, a) |
446 | #define VSPRINTF(d, f, a) vsprintf(d, f, a) | 446 | #define VSPRINTF(d, f, a) vsprintf(d, f, a) |
447 | #define VSNPRINTF(str, size, fmt, a) vsnprintf(str, size, fmt, a) | 447 | #define VSNPRINTF(str, size, fmt, a) vsnprintf(str, size, fmt, a) |
448 | #define _REAL_SNPRINTF(str, size, fmt, ...) snprintf(str, size, fmt, __VA_ARGS__) | 448 | #define _REAL_SNPRINTF snprintf |
449 | #define SPRINTF(d, f, ...) sprintf(d, f, __VA_ARGS__) | 449 | #define SPRINTF sprintf |
450 | #define VSSCANF(s, f, a) vsscanf(s, f, a) | 450 | #define VSSCANF(s, f, a) vsscanf(s, f, a) |
451 | #define SSCANF(s, f, ...) sscanf(s, f, __VA_ARGS__) | 451 | #define SSCANF sscanf |
452 | #define VFSCANF(s, f, a) vfscanf(s, f, a) | 452 | #define VFSCANF(s, f, a) vfscanf(s, f, a) |
453 | #define VSCANF(f, a) vscanf(f, a) | 453 | #define VSCANF(f, a) vscanf(f, a) |
454 | #define SCANF(f, ...) scanf(f, __VA_ARGS__) | 454 | #define SCANF scanf |
455 | #define FSCANF(s, f, ...) fscanf(s, f, __VA_ARGS__) | 455 | #define FSCANF fscanf |
456 | #define WAITPID(p, s, o) waitpid(p, s, o) | ||
456 | #define WAITPID(p, s, o) waitpid(p, s, o) | 457 | #define WAITPID(p, s, o) waitpid(p, s, o) |
457 | #define ACCEPT(s, a, l) accept(s, a, l) | 458 | #define ACCEPT(s, a, l) accept(s, a, l) |
458 | #define BIND(s, n, l) bind(s, n, l) | 459 | #define BIND(s, n, l) bind(s, n, l) |