comparison src/share/vm/libadt/port.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 2b8e28fdf503
children 52b4284cb496
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
89 // IBM's xlC compiler 89 // IBM's xlC compiler
90 #define INTERFACE 90 #define INTERFACE
91 #define IMPLEMENTATION 91 #define IMPLEMENTATION
92 #include <stdlib.h> 92 #include <stdlib.h>
93 #include <memory.h> 93 #include <memory.h>
94 inline int min( int a, int b) { return a < b ? a : b; }
95 inline int max( int a, int b) { return a > b ? a : b; }
94 96
95 #elif defined(_MSC_VER) 97 #elif defined(_MSC_VER)
96 // Microsoft Visual C++ 98 // Microsoft Visual C++
97 //#define INTERFACE 99 //#define INTERFACE
98 #define IMPLEMENTATION 100 #define IMPLEMENTATION