X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=gnulib%2Fsnprintf.c;h=7b9725b3b6053181b5ef0ef9af8c34aa10451754;hb=fd48f3e498442f0cbff5f3606c7c403d0566150e;hp=960cfdb4060b5f5125702c79fabdfd826cc1357b;hpb=96f35b20267e8b1a1c846d476f27fcd330e0b018;p=debian%2Famanda diff --git a/gnulib/snprintf.c b/gnulib/snprintf.c index 960cfdb..7b9725b 100644 --- a/gnulib/snprintf.c +++ b/gnulib/snprintf.c @@ -1,10 +1,10 @@ /* 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 it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3, or (at your option) + the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -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).