add exif-system.h header
[platform/upstream/libexif.git] / libexif / exif-system.h
1 /** \file exif-system.h
2  * \brief System specific definitions, not for installation!
3  */
4
5 #ifndef EXIF_SYSTEM_H
6 #define EXIF_SYSTEM_H
7
8 #if defined(__GNUC__) && (__GNUC__ >= 2)
9 # define UNUSED(param) UNUSED_PARAM_##param __attribute__((unused))
10 #else
11 # define UNUSED(param) param
12 #endif
13
14 #endif /* !defined(EXIF_SYSTEM_H) */