aeec6a299d7a03f1eead7495f0907fc5ad36c6ba
[silc.git] / lib / contrib / getopti.h
1 #ifndef GETOPTI_H
2 #define GETOPTI_H
3
4 #ifndef SILC_SYMBIAN
5 #if !defined(HAVE_GETOPT) && !defined(HAVE_GETOPT_H)
6 /* Our own convenience getopt. */
7 extern int opterr;
8 extern int optind;
9 extern int optopt;
10 extern char *optarg;
11 int getopt(int argc, char * const *argv, const char *optstring);
12 #endif /* !HAVE_GETOPT && !HAVE_GETOPT_H */
13 #endif /* !SILC_SYMBIAN */
14
15 #endif /* GETOPTI_H */