New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
[gnulib.git] / lib / getdelim.c
index cb8886d..4ae814b 100644 (file)
 
 #include <config.h>
 
+/* Don't use __attribute__ __nonnull__ in this compilation unit.  Otherwise gcc
+   optimizes away the lineptr == NULL || n == NULL || fp == NULL tests below.  */
+#define _GL_ARG_NONNULL(params)
+
 #include <stdio.h>
 
 #include <limits.h>