Changeset 6857
- Timestamp:
- 10/28/16 13:33:22 (3 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/libmseed.h
r6803 r6857 5 5 * Interface declarations for the Mini-SEED library (libmseed). 6 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Library General Public License9 * as published by the Free Software Foundation; either version 2 of10 * theLicense, or (at your option) any later version.7 * This library is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU Lesser General Public License as 9 * published by the Free Software Foundation; either version 3 of the 10 * License, or (at your option) any later version. 11 11 * 12 12 * This library is distributed in the hope that it will be useful, but 13 13 * WITHOUT ANY WARRANTY; without even the implied warranty of 14 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Library General Public License (GNU-LGPL) for more details. The 16 * GNU-LGPL and further information can be found here: 17 * http://www.gnu.org/ 15 * Lesser General Public License (GNU-LGPL) for more details. 18 16 * 19 * Written by Chad Trabant 17 * You should have received a copy of the GNU Lesser General Public 18 * License along with this software. 19 * If not, see <https://www.gnu.org/licenses/>. 20 * 21 * Copyright (C) 2016 Chad Trabant 20 22 * IRIS Data Management Center 21 23 ***************************************************************************/ … … 31 33 #include "lmplatform.h" 32 34 33 #define LIBMSEED_VERSION "2.1 7"34 #define LIBMSEED_RELEASE "201 5.213"35 #define LIBMSEED_VERSION "2.18" 36 #define LIBMSEED_RELEASE "2016.286" 35 37 36 38 #define MINRECLEN 128 /* Minimum Mini-SEED record length, 2^7 bytes */ … … 672 674 extern int ms_bigendianhost (void); 673 675 extern double ms_dabs (double val); 676 extern double ms_rsqrt64 (double val); 674 677 675 678 -
trunk/include/lmplatform.h
r6803 r6857 1 1 /*************************************************************************** 2 2 * lmplatform.h: 3 * 3 * 4 4 * Platform specific headers. This file provides a basic level of platform 5 5 * portability. 6 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Library General Public License 9 * as published by the Free Software Foundation; either version 2 of 10 * the License, or (at your option) any later version. 11 * 12 * This library is distributed in the hope that it will be useful, but 13 * WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * Library General Public License (GNU-LGPL) for more details. The 16 * GNU-LGPL and further information can be found here: 17 * http://www.gnu.org/ 18 * 19 * Written by Chad Trabant, IRIS Data Management Center 20 * 21 * modified: 2015.134 7 * modified: 2016.275 22 8 ***************************************************************************/ 23 9 … … 80 66 #include <sys/types.h> 81 67 82 /* For pre-MSVC 2010define standard int types, otherwise use inttypes.h */83 #if defined(_MSC_VER) && _MSC_VER < 160068 /* For MSVC 2012 and earlier define standard int types, otherwise use inttypes.h */ 69 #if defined(_MSC_VER) && _MSC_VER <= 1700 84 70 typedef signed char int8_t; 85 71 typedef unsigned char uint8_t; … … 112 98 113 99 #if defined(__MINGW32__) || defined(__MINGW64__) 100 #include <fcntl.h> 101 114 102 #define fstat _fstat 115 103 #define stat _stat … … 124 112 } 125 113 #endif 126 114 127 115 #endif /* LMPLATFORM_H */
Note: See TracChangeset
for help on using the changeset viewer.