comparison src/XGetopt.h @ 118:0f1492b7fe8b

patch from Fridrich Strba for building on mingw and general cleanup of autoconf files add processing for pst files of type 0x0f start adding support for properly building and installing libpst.so and the header files required to use it. remove version.h since the version number is now in config.h more const correctness issues regarding getopt()
author Carl Byington <carl@five-ten-sg.com>
date Sat, 31 Jan 2009 12:12:36 -0800
parents c508ee15dfca
children
comparison
equal deleted inserted replaced
117:0a3d854b53f6 118:0f1492b7fe8b
16 #define XGETOPT_H 16 #define XGETOPT_H
17 17
18 extern int optind, opterr; 18 extern int optind, opterr;
19 extern char *optarg; 19 extern char *optarg;
20 20
21 int getopt(int argc, char *argv[], char *optstring); 21 int getopt(int argc, char* const* argv, char *optstring);
22 22
23 #endif //XGETOPT_H 23 #endif //XGETOPT_H