X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsnprintf.c;h=7b9725b3b6053181b5ef0ef9af8c34aa10451754;hb=95454b6b2dbb9f57bf5623a0fd8d40fb2433c4d7;hp=7314c83a3e11e81a35881cca16e224fc3c4719fe;hpb=e0a39772b0b68a716a423c697be786d64bd07b2a;p=gnulib.git diff --git a/lib/snprintf.c b/lib/snprintf.c index 7314c83a3..7b9725b3b 100644 --- a/lib/snprintf.c +++ b/lib/snprintf.c @@ -1,5 +1,5 @@ /* Formatted output to strings. - Copyright (C) 2004, 2006-2007 Free Software Foundation, Inc. + Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc. Written by Simon Josefsson and Paul Eggert. This program is free software; you can redistribute it and/or modify @@ -29,11 +29,6 @@ #include "vasnprintf.h" -/* Some systems, like OSF/1 4.0 and Woe32, don't have EOVERFLOW. */ -#ifndef EOVERFLOW -# define EOVERFLOW E2BIG -#endif - /* Print formatted output to string STR. Similar to sprintf, but additional length SIZE limit how much is written into STR. Returns string length of formatted string (which may be larger than SIZE).