~collinp/paradise-netrek/3.1p0

« back to all changes in this revision

Viewing changes to src/pped/main.h

  • Committer: Collin Pruitt
  • Date: 2009-05-22 04:40:09 UTC
  • Revision ID: collinp111@gmail.com-20090522044009-gw30zywb9oaae4nr
Initial upload - just the source release of 3.1p0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdarg.h>
 
2
 
 
3
/*
 
4
 * prototypes for main.c
 
5
 */
 
6
 
 
7
#ifndef MAIN_H
 
8
#define MAIN_H
 
9
 
 
10
#include "config.h"
 
11
 
 
12
void err P((char *s, ...));
 
13
void err_sys P((char *s, ...));
 
14
void GoAway P((int type));
 
15
 
 
16
#endif