- Timestamp:
- 07/02/18 12:03:52 (3 years ago)
- Branches:
- cachetimestamps, develop, master, rc-4.0.4, ringdecrementfix, ringperformance
- Children:
- c7a320a
- Parents:
- 8f5d454 (diff), 823d8e1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/Makefile.am
rb663d33 r823d8e1 78 78 data-struct/buckets.c data-struct/simple_circular_buffer.c \ 79 79 combiner_sorted.c combiner_unordered.c \ 80 pthread_spinlock.c pthread_spinlock.h 80 pthread_spinlock.c pthread_spinlock.h \ 81 strndup.c 81 82 82 83 if DAG2_4 -
lib/libtrace_int.h
r32ee9b2 r823d8e1 99 99 #endif 100 100 101 #if ndef HAVE_STRNDUP101 #if !HAVE_DECL_STRNDUP 102 102 char *strndup(const char *s, size_t size); 103 103 #endif 104 104 105 #if ndef HAVE_STRNCASECMP105 #if !HAVE_DECL_STRNCASECMP 106 106 # ifndef HAVE__STRNICMP 107 107 /** A local implementation of strncasecmp (as some systems do not have it) */ … … 112 112 #endif 113 113 114 #if ndef HAVE_SNPRINTF114 #if !HAVE_DECL_SNPRINTF 115 115 # ifndef HAVE_SPRINTF_S 116 116 /** A local implementation of snprintf (as some systems do not have it) */ -
lib/strndup.c
ree6e802 r823d8e1 24 24 * 25 25 */ 26 #ifndef HAVE_STRNDUP 26 #include "config.h" 27 #if !HAVE_DECL_STRNDUP 27 28 28 29 #include <stdlib.h>
Note: See TracChangeset
for help on using the changeset viewer.