blob: c5af357c0f9193e2fce47d7b846daacb4e7b330b (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*
* xmalloc.c -- allocate space or die
*
* Copyright 1998 by Eric S. Raymond.
* For license terms, see the file COPYING in this directory.
*/
#include "config.h"
#include <sys/types.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#if defined(STDC_HEADERS)
#include <stdlib.h>
#endif
#include "fetchmail.h"
#include "i18n.h"
#if defined(HAVE_VOIDPOINTER)
#define XMALLOCTYPE void
#else
#define XMALLOCTYPE char
#endif
XMALLOCTYPE *
xmalloc (size_t n)
{
XMALLOCTYPE *p;
p = (XMALLOCTYPE *) /*
* options.c -- command-line option processing
*
* For license terms, see the file COPYING in this directory.
*/
#include <config.h>
#include <stdio.h>
#include <pwd.h>
#include <string.h>
#if defined(STDC_HEADERS)
#include <stdlib.h>
#endif
#include "getopt.h"
#include "fetchmail.h"
#define LA_HELP 1
#define LA_VERSION 2
#define LA_CHECK 3
#define LA_SILENT 4
#define LA_VERBOSE 5
|