blob: c7ef3387cb7558a98bec8a61aaee17dc0e088e58 (
plain)
1
2
3
4
5
6
7
8
|
/* $Id: use_getopt.h,v 1.1 1997/04/07 17:27:21 dps Exp $ */
#ifndef __USE_GETOPT_H__
#define __USE_GETOPT_H__
#define getopt_long(a,b,c,d,e) getopt(a,b,c)
#define NO_LONG_OPTS 1
#endif /* __USE_GETOPT_H__ */
|