r2094@chromobil: stefan | 2008-02-26 17:10:49 +0100

Fix #1413: including of stdint.h/inttypes.h in etag.c


git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2089 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.19
Stefan Bühler 15 years ago
parent 26c45e8004
commit 0a894c9cb3

@ -1,5 +1,14 @@
#include <string.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#if defined HAVE_STDINT_H
#include <stdint.h>
#elif defined HAVE_INTTYPES_H
#include <inttypes.h>
#endif
#include "buffer.h"
#include "etag.h"

Loading…
Cancel
Save