~ubuntu-branches/ubuntu/raring/postfix/raring

« back to all changes in this revision

Viewing changes to src/tls/tls_temp.c

Tags: upstream-2.2.6
ImportĀ upstreamĀ versionĀ 2.2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*++
 
2
/* NAME
 
3
/*      tls_temp 3
 
4
/* SUMMARY
 
5
/*      code that is to be replaced
 
6
/* SYNOPSIS
 
7
/*      #define TLS_INTERNAL
 
8
/*      #include <tls.h>
 
9
/* DESCRIPTION
 
10
/*      As the summary says.
 
11
/* LICENSE
 
12
/* .ad
 
13
/* .fi
 
14
/*      This software is free. You can do with it whatever you want.
 
15
/*      The original author kindly requests that you acknowledge
 
16
/*      the use of his software.
 
17
/* AUTHOR(S)
 
18
/*      Originally written by:
 
19
/*      Lutz Jaenicke
 
20
/*      BTU Cottbus
 
21
/*      Allgemeine Elektrotechnik
 
22
/*      Universitaetsplatz 3-4
 
23
/*      D-03044 Cottbus, Germany
 
24
/*
 
25
/*      Updated by:
 
26
/*      Wietse Venema
 
27
/*      IBM T.J. Watson Research
 
28
/*      P.O. Box 704
 
29
/*      Yorktown Heights, NY 10598, USA
 
30
/*--*/
 
31
 
 
32
/* System library. */
 
33
 
 
34
#include <sys_defs.h>
 
35
 
 
36
#ifdef USE_TLS
 
37
 
 
38
/* TLS library. */
 
39
 
 
40
#define TLS_INTERNAL
 
41
#include <tls.h>
 
42
 
 
43
/* Application-specific. */
 
44
 
 
45
const tls_info_t tls_info_zero = {
 
46
    0, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 0
 
47
};
 
48
 
 
49
#endif