summaryrefslogtreecommitdiff
path: root/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/gnu.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/gnu.h')
-rwxr-xr-xutils/zenutils/libraries/beecrypt-4.1.2/beecrypt/gnu.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/gnu.h b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/gnu.h
new file mode 100755
index 0000000000..18386ef997
--- /dev/null
+++ b/utils/zenutils/libraries/beecrypt-4.1.2/beecrypt/gnu.h
@@ -0,0 +1,67 @@
1/*
2 * Copyright (c) 2003 Bob Deblier
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 */
19
20#ifndef _BEECRYPT_GNU_H
21#define _BEECRYPT_GNU_H
22
23#include <inttypes.h>
24#include <stdint.h>
25
26
27#include <pthread.h>
28#include <stdio.h>
29#include <stdlib.h>
30
31#include <string.h>
32#include <unistd.h>
33#include <dlfcn.h>
34
35typedef pthread_cond_t bc_cond_t;
36typedef pthread_mutex_t bc_mutex_t;
37typedef pthread_t bc_thread_t;
38
39
40
41
42
43
44
45
46
47
48
49
50
51#if defined(__GNUC__)
52# if !defined(__GNUC_PREREQ__)
53# define __GNUC_PREREQ__(maj, min) (__GNUC__ > (maj) || __GNUC__ == (maj) && __GNUC_MINOR__ >= (min))
54# endif
55#else
56# define __GNUC__ 0
57# define __GNUC_PREREQ__(maj, min) 0
58#endif
59
60/* WARNING: overriding this value is dangerous; some assembler routines
61 * make assumptions about the size set by the configure script
62 */
63#if !defined(MP_WBITS)
64# define MP_WBITS 64U
65#endif
66
67#endif