File: compiler.h

package info (click to toggle)
diskscan 0.14.1-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 800 kB
  • ctags: 465
  • sloc: ansic: 3,696; sh: 3,565; python: 155; makefile: 41
file content (10 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
#ifndef _COMPILER_H
#define _COMPILER_H

#ifdef __GNUC__
#  define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
#else
#  define UNUSED(x) UNUSED_ ## x
#endif

#endif