X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fgetdelim.c;h=2e127fcaaa2bf0e3dc934b1c1528444c26a74c4f;hb=dac3bbf96357f7866a1094c228b4e5bea3fcf853;hp=7c6f3265a052b3e6f2c085df6d6bf21461eada75;hpb=d80538def81e2ceeab7f8e954908e74eeae43349;p=pspp diff --git a/lib/getdelim.c b/lib/getdelim.c index 7c6f3265a0..2e127fcaaa 100644 --- a/lib/getdelim.c +++ b/lib/getdelim.c @@ -1,5 +1,5 @@ /* getdelim.c --- Implementation of replacement getdelim function. - Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007 Free + Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or @@ -42,11 +42,6 @@ # define funlockfile(x) ((void) 0) #endif -/* Some systems, like OSF/1 4.0 and Woe32, don't have EOVERFLOW. */ -#ifndef EOVERFLOW -# define EOVERFLOW E2BIG -#endif - /* Read up to (and including) a DELIMITER from FP into *LINEPTR (and NUL-terminate it). *LINEPTR is a pointer returned from malloc (or NULL), pointing to *N characters of space. It is realloc'ed as