mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-19 00:24:35 +00:00
15 lines
234 B
C
15 lines
234 B
C
/* $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 */
|