blob: d981fe4340658c334a2e1b1a7bfb7238e7f5a645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $Id: getopt.h,v 1.2 2001/07/14 16:05:55 stevesk Exp $ */
#ifndef _GETOPT_H
#define _GETOPT_H
#include "config.h"
#ifndef HAVE_GETOPT_H
int getopt(int argc, char * const *argv, const char *opts);
#endif
#endif /* _GETOPT_H */
|