commit 3081aba7091d8f0283393b127aa5f55766a4b0ab
parent d9e027c055134f4c9bb2dc111731aea3a1e2435d
Author: Nils Durner <durner@gnunet.org>
Date: Sun, 1 May 2005 15:20:55 +0000
fix MUNMAP macro
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/include/plibc.h b/src/include/plibc.h
@@ -22,7 +22,7 @@
* @brief PlibC header
* @attention This file is usually not installed under Unix,
* so ship it with your application
- * @version $Revision: 1.12 $
+ * @version $Revision: 1.13 $
*/
#ifndef _PLIBC_H_
@@ -441,7 +441,7 @@ size_t strnlen (const char *str, size_t maxlen);
#define GN_FWRITE(b, s, c, f) fwrite(b, s, c, f)
#define SYMLINK(a, b) symlink(a, b)
#define MMAP(s, l, p, f, d, o) mmap(s, l, p, f, d, o)
- #define MUNMAP(s, l) munmap(s, l);
+ #define MUNMAP(s, l) munmap(s, l)
#define STRERROR(i) strerror(i)
#define READLINK(p, b, s) readlink(p, b, s)
#define LSTAT(p, b) lstat(p, b)