diff options
author | Karl Berry <karl@freefriends.org> | 2010-01-31 00:37:08 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-01-31 00:37:08 +0000 |
commit | fddb3638f20eff3f5c3a2f87103b8c1f330a637d (patch) | |
tree | 26e8107bf7dc9849f4727c8e5e2758106afe216d /Build/source/texk/kpathsea/getopt1.c | |
parent | b251a1a9ddd70c3703f12bb312787f0406f368cd (diff) |
reinstate win32lib.h and make other _WIN32-related changes, for compilation with MSVC 7.1; from Javier Mugica
git-svn-id: svn://tug.org/texlive/trunk@16876 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/getopt1.c')
-rw-r--r-- | Build/source/texk/kpathsea/getopt1.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/getopt1.c b/Build/source/texk/kpathsea/getopt1.c index 0b5f957b528..1bbe8877d03 100644 --- a/Build/source/texk/kpathsea/getopt1.c +++ b/Build/source/texk/kpathsea/getopt1.c @@ -1,6 +1,6 @@ /* getopt_long and getopt_long_only entry points for GNU getopt. - Copyright 2008 Karl Berry. + Copyright 2008, 2010 Karl Berry. Copyright (C) 1987,88,89,90,91,92,93,94,96,97 Free Software Foundation, Inc. The original version of this file was part of the GNU C Library. @@ -100,9 +100,7 @@ getopt_long_only (argc, argv, options, long_options, opt_index) #include <stdio.h> int -main (argc, argv) - int argc; - char **argv; +main (int argc, char **argv) { int c; int digit_optind = 0; |