Changeset 41b53c2 for tools/tracesplit/tracesplit.c
- Timestamp:
- 11/03/05 17:17:41 (17 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- fe3d755
- Parents:
- 117e83b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/tracesplit/tracesplit.c
r5d022cd r41b53c2 2 2 #include <stdio.h> 3 3 #include <stdlib.h> 4 #include <inttypes.h> 4 #ifdef HAVE_INTTYPES_H 5 # include <inttypes.h> 6 #endif 5 7 #include <stdbool.h> 6 8 #include <getopt.h> 7 9 #include <string.h> 10 11 #ifndef UINT64_MAX 12 # if __WORDSIZE == 64 13 # define UINT64_MAX 18446744073709551615UL 14 # else 15 # define UINT64_MAX 18446744073709551615ULL 16 # endif 17 #endif 8 18 9 19 char *strdupcat(char *str,char *app)
Note: See TracChangeset
for help on using the changeset viewer.