File: compiler-gcc3.h

package info (click to toggle)
fio 2.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,640 kB
  • sloc: ansic: 26,696; makefile: 180; sh: 124
file content (10 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#ifndef FIO_COMPILER_GCC3_H
#define FIO_COMPILER_GCC3_H

#if __GNUC_MINOR__ >= 4
#ifndef __must_check
#define __must_check		__attribute__((warn_unused_result))
#endif
#endif

#endif