Changeset 3773
- Timestamp:
- Nov 9, 2007, 7:50:40 PM (13 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/bencode.c
r3753 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <ctype.h> /* isdigit, isprint */ 27 26 #include <stdarg.h> -
trunk/libtransmission/completion.c
r3663 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <string.h> 27 26 -
trunk/libtransmission/crypto.c
r3564 r3773 12 12 13 13 #include <sys/types.h> /* for event.h, as well as netinet/in.h on some platforms */ 14 #include <assert.h>15 14 #include <inttypes.h> /* uint8_t */ 16 15 #include <string.h> /* memcpy */ -
trunk/libtransmission/fastresume.c
r3619 r3773 42 42 **********************************************************************/ 43 43 44 #include <assert.h>45 44 #include <errno.h> 46 45 #include <stdio.h> -
trunk/libtransmission/fdlimit.c
r3765 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <errno.h> 27 26 #include <inttypes.h> -
trunk/libtransmission/handshake.c
r3759 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <errno.h> 15 14 #include <inttypes.h> -
trunk/libtransmission/inout.c
r3765 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <stdlib.h> 15 14 #include <string.h> -
trunk/libtransmission/ipcparse.c
r3735 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <errno.h> 27 26 #include <limits.h> -
trunk/libtransmission/makemeta.c
r3735 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <errno.h> 15 14 #include <math.h> -
trunk/libtransmission/metainfo.c
r3731 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <errno.h> 27 26 #include <stdio.h> -
trunk/libtransmission/natpmp.c
r3731 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <errno.h> 27 26 #include <stdlib.h> -
trunk/libtransmission/peer-io.c
r3765 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <string.h> 15 14 #include <stdio.h> -
trunk/libtransmission/peer-mgr.c
r3769 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <string.h> /* memcpy, memcmp */ 15 14 #include <stdlib.h> /* qsort */ -
trunk/libtransmission/peer-msgs.c
r3762 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <ctype.h> 15 14 #include <errno.h> -
trunk/libtransmission/platform.c
r3552 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <errno.h> 27 26 #include <stdio.h> -
trunk/libtransmission/ptrarray.c
r3269 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <stdlib.h> 15 14 #include <string.h> /* memmove */ -
trunk/libtransmission/publish.c
r3217 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include "list.h" 15 14 #include "publish.h" -
trunk/libtransmission/shared.c
r3731 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <stdlib.h> 27 26 #include <string.h> -
trunk/libtransmission/torrent.c
r3650 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <stdio.h> 27 26 #include <stdlib.h> -
trunk/libtransmission/tracker.c
r3753 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <ctype.h> /* isalnum */ 15 14 #include <stdio.h> /* snprintf */ -
trunk/libtransmission/transmission.c
r3768 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <stdio.h> 27 26 #include <stdlib.h> -
trunk/libtransmission/trevent.c
r3762 r3773 11 11 */ 12 12 13 #include <assert.h>14 13 #include <errno.h> 15 14 #include <stdlib.h> -
trunk/libtransmission/utils.c
r3755 r3773 23 23 *****************************************************************************/ 24 24 25 #include <assert.h>26 25 #include <ctype.h> 27 26 #include <errno.h> -
trunk/libtransmission/utils.h
r3735 r3773 91 91 ***/ 92 92 93 #ifdef SYS_DARWIN 94 #include <Foundation/Foundation.h> 95 #define assert(A) NSCParameterAssert(A) 96 #else 97 #include <assert.h> 98 #endif 99 100 /*** 101 **** 102 ***/ 103 93 104 #define tr_new(struct_type, n_structs) \ 94 105 ((struct_type *) tr_malloc (((size_t) sizeof (struct_type)) * ((size_t) (n_structs))))
Note: See TracChangeset
for help on using the changeset viewer.