Add lttng_ust_ prefix before objd_unref
[lttng-ust.git] / include / ust / kcompat / types.h
CommitLineData
17bb07b4
PMF
1#ifndef _KCOMPAT_TYPES
2#define _KCOMPAT_TYPES
3
4/*
5 * Kernel sourcecode compatibility layer
6 *
7 * Copyright (C) 2009 Novell Inc.
8 *
9 * Author: Jan Blunck <jblunck@suse.de>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU Lesser General Public License version 2.1 as
13 * published by the Free Software Foundation.
14 */
15
16#include <asm/types.h>
17
18#ifdef __KERNEL__
19typedef __s8 s8;
20typedef __u8 u8;
21
22typedef __s16 s16;
23typedef __u16 u16;
24
25typedef __s32 s32;
26typedef __u32 u32;
27
28typedef __s64 s64;
29typedef __u64 u64;
30#endif
31
32#endif /* _KCOMPAT_TYPES */
This page took 0.024069 seconds and 4 git commands to generate.