~ubuntu-branches/ubuntu/quantal/uclibc/quantal

« back to all changes in this revision

Viewing changes to libc/inet/netlinkaccess.h

  • Committer: Bazaar Package Importer
  • Author(s): Hector Oron
  • Date: 2011-06-11 03:06:20 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110611030620-ywjfvyuqvrpsm282
Tags: 0.9.32-1
* New upstream release
* Add myself as maintainer
* Bump standards version 
* Add Vcs-Git, Vcs-Browser and Homepage fields
* Add watch file 

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <features.h>
23
23
#include <stdint.h>
24
24
#include <unistd.h>
25
 
#include <sys/types.h>
26
 
 
27
25
#if defined __ASSUME_NETLINK_SUPPORT || defined __UCLIBC_USE_NETLINK__
28
 
#define _LINUX_TYPES_H
29
 
typedef uint8_t __u8;
30
 
typedef uint16_t __u16;
31
 
typedef uint32_t __u32;
32
 
typedef uint64_t __u64;
33
 
typedef int32_t __s32;
 
26
#include <asm/types.h>
34
27
#include <linux/rtnetlink.h>
35
28
#include <linux/netlink.h>
36
29