OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
compiler.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef __BASE_COMPILER_H__
6 #define __BASE_COMPILER_H__
7 
8 #ifdef __GNUC__
9 
10 #ifdef __linux__
11 #include <features.h>
12 #define __GCC_HAS_PRAGMA __GNUC_PREREQ(4, 4)
13 #define __GCC_HAS_DIAGNOSTIC_PUSH __GNUC_PREREQ(4, 6)
14 #endif // OS
15 
16 #endif // __GNUC__
17 
18 #endif // __BASE_COMPILER_H__