X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fposixver.c;h=d2b88d40ee5b2c244256af8fe13a569c780ad8a8;hb=a81348d2e136b0f2de110b49a5d0dfa5d7d76f71;hp=73a648256634091aff56d7287f5821e3325ae06c;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=pspp diff --git a/lib/posixver.c b/lib/posixver.c index 73a6482566..d2b88d40ee 100644 --- a/lib/posixver.c +++ b/lib/posixver.c @@ -1,7 +1,6 @@ /* Which POSIX version to conform to, for utilities. - Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software - Foundation, Inc. + Copyright (C) 2002-2006, 2009-2011 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 @@ -48,7 +47,7 @@ posix2_version (void) char *e; long int i = strtol (s, &e, 10); if (! *e) - v = i; + v = i; } return v < INT_MIN ? INT_MIN : v < INT_MAX ? v : INT_MAX;