]> git.ipfire.org Git - people/ms/strongswan.git/blame - src/libfreeswan/liblwres/include/lwres/int.h
- started to rebuild source layout
[people/ms/strongswan.git] / src / libfreeswan / liblwres / include / lwres / int.h
CommitLineData
997358a6
MW
1/*
2 * Copyright (C) 2000, 2001 Internet Software Consortium.
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
9 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
10 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
11 * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
12 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
13 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
14 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
15 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18/* $Id: int.h,v 1.1 2004/03/15 20:35:25 as Exp $ */
19
20#ifndef LWRES_INT_H
21#define LWRES_INT_H 1
22
23typedef char lwres_int8_t;
24typedef unsigned char lwres_uint8_t;
25typedef short lwres_int16_t;
26typedef unsigned short lwres_uint16_t;
27typedef int lwres_int32_t;
28typedef unsigned int lwres_uint32_t;
29typedef long long lwres_int64_t;
30typedef unsigned long long lwres_uint64_t;
31
32#endif /* LWRES_INT_H */