diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-04-28 22:14:05 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-04-28 22:14:05 +0200 |
commit | c4bc1d473f324220738f2c60984b3a8ee198bc38 (patch) | |
tree | 7a47d9c70efccf06e5133b2abafac60f6662621a | |
parent | 5b7e1f9efede93b7bf97b31052bc0908f184db51 (diff) |
anyauthput.c: stdint.h must not be included unconditionally
As it is already included by curlbuild.h if it exists on the platform it
was included here superfluously anyway.
Reported by: Dagobert Michelsen
Bug: http://curl.haxx.se/bug/view.cgi?id=3294509
-rw-r--r-- | docs/examples/anyauthput.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/examples/anyauthput.c b/docs/examples/anyauthput.c index 6b3d74a4b..76fa15853 100644 --- a/docs/examples/anyauthput.c +++ b/docs/examples/anyauthput.c @@ -26,8 +26,6 @@ #else # ifdef __VMS typedef int intptr_t; -# else -# include <stdint.h> # endif # include <unistd.h> #endif |