1 /* 2 * Copyright 2014-2017 Cavium, Inc. 3 * The contents of this file are subject to the terms of the Common Development 4 * and Distribution License, v.1, (the "License"). 5 * 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the License at available 9 * at http://opensource.org/licenses/CDDL-1.0 10 * 11 * See the License for the specific language governing permissions and 12 * limitations under the License. 13 */ 14 15 #ifndef _VERSION_H 16 #define _VERSION_H 17 18 #ifdef __cplusplus 19 extern "C" { 20 #endif 21 22 #define MAJVERSION 7 23 #define MINVERSION 10 24 #define REVVERSION 4 25 26 #ifdef __cplusplus 27 } 28 #endif 29 30 #endif /* _VERSION_H */ 31