~ubuntu-branches/ubuntu/oneiric/wackamole/oneiric

« back to all changes in this revision

Viewing changes to config_help.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2003-07-09 16:02:27 UTC
  • Revision ID: james.westby@ubuntu.com-20030709160227-o829bo3nmehbp9h6
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _CONFIG_HELP_H_
 
2
#define _CONFIG_HELP_H_ 1
 
3
 
 
4
#define YYSTYPE YYSTYPE
 
5
 
 
6
typedef union {
 
7
  int number;
 
8
  struct {
 
9
    struct in_addr addr;
 
10
    int mask;
 
11
    char iface[IFNAMSIZ];
 
12
  } ip;
 
13
  struct timeval tv;
 
14
  char *string;
 
15
} YYSTYPE;
 
16
extern YYSTYPE yylval;
 
17
extern int yysemanticerr;
 
18
 
 
19
int yyerror(char *str);
 
20
 
 
21
#endif /* _CONFIG_HELP_H_ */