1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-08 15:34:44 +00:00

(trunk libT) silence a compiler warning

This commit is contained in:
Charles Kerr 2009-05-19 15:53:34 +00:00
parent 3e82f056d2
commit dc02274d4c

View file

@ -10,13 +10,17 @@
* $Id$
*/
#ifdef HAVE_MEMMEM
#define _GNU_SOURCE /* glibc's string.h needs this to pick up memmem */
#endif
#include <assert.h>
#include <ctype.h> /* isalpha, tolower */
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h> /* strerror, memset */
#include <string.h> /* strerror, memset, memmem */
#include <libgen.h> /* basename */
#include <sys/time.h>