source: GPL/trunk/include/linux/compiler-gcc+.h

Last change on this file was 305, checked in by Paul Smedley, 17 years ago

Update source to ALSA 1.0.16 level

File size: 638 bytes
Line 
1/* Never include this file directly. Include <linux/compiler.h> instead. */
2
3/*
4 * These definitions are for Ueber-GCC: always newer than the latest
5 * version and hence sporting everything plus a kitchen-sink.
6 */
7#include <linux/compiler-gcc.h>
8
9#define inline __inline__ __attribute__((always_inline))
10#define __inline__ __inline__ __attribute__((always_inline))
11#define __inline __inline__ __attribute__((always_inline))
12#define __deprecated __attribute__((deprecated))
13#define __attribute_used__ __attribute__((__used__))
14#define __attribute_pure__ __attribute__((pure))
15#define __attribute_const__ __attribute__((__const__))
Note: See TracBrowser for help on using the repository browser.