File: main.c

package info (click to toggle)
zmailer 2.99.55-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 19,516 kB
  • ctags: 9,694
  • sloc: ansic: 120,953; sh: 3,862; makefile: 3,166; perl: 2,695; python: 115; awk: 22
file content (37 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 *	Copyright 1990 by Rayan S. Zachariassen, all rights reserved.
 *	This will be free software, but only when it is finished.
 */

#include "hostenv.h"
#include <stdio.h>
#include <sys/stat.h>

int D_alloc = 0;

#ifdef	MAILER
int D_regnarrate = 0, D_compare = 0, D_matched = 0, D_functions = 0;
int D_assign = 0;
int funclevel = 0;

#include "listutils.h"
conscell **return_valuep = 0;
#endif	/* MAILER */

#include "libsh.h"

extern int optind;

int
main(argc, argv)
	int argc;
	char *argv[];
{
	/* mal_debug(3); */
	zshinit(argc, argv);
	/* mal_leaktrace(1); */
	trapexit(zshtoplevel(optind < argc ? argv[optind] : (char *)NULL));
	/* NOTREACHED */
	return 0;
}