Merged silc_1_0_branch to trunk.
[crypto.git] / lib / contrib / getopti.h
1 #ifndef GETOPTI_H
2 #define GETOPTI_H
3
4 #ifndef SILC_EPOC
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_EPOC */
14
15 #endif /* GETOPTI_H */