File: compiler.h

package info (click to toggle)
diskscan 0.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,656 kB
  • sloc: ansic: 11,136; python: 338; xml: 138; sh: 41; makefile: 34
file content (10 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (8)
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