summaryrefslogtreecommitdiff
path: root/gl/tests/test-getline.c
diff options
context:
space:
mode:
Diffstat (limited to 'gl/tests/test-getline.c')
-rw-r--r--gl/tests/test-getline.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/gl/tests/test-getline.c b/gl/tests/test-getline.c
index 50722cd48d..7112b52a4c 100644
--- a/gl/tests/test-getline.c
+++ b/gl/tests/test-getline.c
@@ -1,5 +1,5 @@
/* Test of getline() function.
- Copyright (C) 2007-2009 Free Software Foundation, Inc.
+ Copyright (C) 2007-2010 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -20,20 +20,14 @@
#include <config.h>
#include <stdio.h>
+
+#include "signature.h"
+SIGNATURE_CHECK (getline, ssize_t, (char **, size_t *, FILE *));
+
#include <stdlib.h>
#include <string.h>
-#define ASSERT(expr) \
- do \
- { \
- if (!(expr)) \
- { \
- fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
- fflush (stderr); \
- abort (); \
- } \
- } \
- while (0)
+#include "macros.h"
int
main (void)