~ubuntu-branches/ubuntu/breezy/uclibc/breezy

« back to all changes in this revision

Viewing changes to libc/sysdeps/linux/common/bits/kernel_types.h

  • Committer: Bazaar Package Importer
  • Author(s): David Schleef
  • Date: 2005-04-18 13:29:53 UTC
  • mfrom: (1.1.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050418132953-hzuzafmpkxuj0gvj
Tags: 0.9.27-1
* New upstream release.
* Acknowledge NMU (Closes: #268989) and fix the bug it caused
  (Closes: #284326)
* Add gross versioned dependency for gcc-3.3, and make sure we use
  gcc-3.3 in the gcc wrapper. (Closes: #304806)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _BITS_KERNEL_TYPES_H
 
2
#define _BITS_KERNEL_TYPES_H
 
3
 
 
4
/* Sigh.  We need to carefully wrap this one...  No guarantees
 
5
 * that the asm/posix_types.h kernel header is working.  Many
 
6
 * arches have broken headers that introduce tons of gratuitous
 
7
 * conflicts with uClibc's namespace.   See bits/kernel_types.h
 
8
 * for i386, arm, etc for examples... */
 
9
#warning You really should include a proper bits/kernel_types.h for your architecture 
 
10
 
 
11
#ifndef __GLIBC__
 
12
#define __GLIBC__ 2
 
13
#include <asm/posix_types.h>
 
14
#undef __GLIBC__
 
15
#else
 
16
#include <asm/posix_types.h>
 
17
#endif
 
18
 
 
19
 
 
20
#endif /* _BITS_KERNEL_TYPES_H */