File: sgetopt.h

package info (click to toggle)
daemontools 1:0.76-13
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,296 kB
  • sloc: ansic: 3,800; sh: 464; makefile: 391
file content (23 lines) | stat: -rw-r--r-- 469 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Public domain. */

#ifndef SGETOPT_H
#define SGETOPT_H

#ifndef SGETOPTNOSHORT
#define getopt sgetoptmine
#define optarg subgetoptarg
#define optind subgetoptind
#define optpos subgetoptpos
#define opterr sgetopterr
#define optproblem subgetoptproblem
#define optprogname sgetoptprogname
#define opteof subgetoptdone
#endif

#include "subgetopt.h"

extern int sgetoptmine(int,char **,const char *);
extern int sgetopterr;
extern const char *sgetoptprogname;

#endif