blob: 9abdae8e958c5dc837083ade4b380d426ad76726 [file] [log] [blame]
Damien Millerff5f47e2001-09-18 15:05:20 +10001/* $Id: getopt.h,v 1.4 2001/09/18 05:05:21 djm Exp $ */
Damien Miller4f8e6692001-07-14 13:22:53 +10002
Damien Millerff5f47e2001-09-18 15:05:20 +10003#ifndef _BSDGETOPT_H
4#define _BSDGETOPT_H
Damien Miller4f8e6692001-07-14 13:22:53 +10005
6#include "config.h"
7
Damien Millerff5f47e2001-09-18 15:05:20 +10008#if !defined(HAVE_GETOPT) || !defined(HAVE_GETOPT_OPTRESET)
Damien Miller4f8e6692001-07-14 13:22:53 +10009
Tim Ricea4f7ae12001-09-17 14:34:33 -070010int BSDgetopt(int argc, char * const *argv, const char *opts);
Damien Miller4f8e6692001-07-14 13:22:53 +100011
12#endif
13
Damien Millerff5f47e2001-09-18 15:05:20 +100014#endif /* _BSDGETOPT_H */