summaryrefslogtreecommitdiff
path: root/ext/standard/crypt_sha512.c
diff options
context:
space:
mode:
authorMichael Wallner <mike@php.net>2013-08-06 22:45:35 +0200
committerMichael Wallner <mike@php.net>2013-08-06 22:49:56 +0200
commit14caf174ff219376e4f1234bd297ffe973cc416e (patch)
tree73532567f2c68b42ad55efbbaf1d85d7f81f6255 /ext/standard/crypt_sha512.c
parentca0497bba2222c282c39048776a9f61052e67643 (diff)
downloadphp-git-14caf174ff219376e4f1234bd297ffe973cc416e.tar.gz
unify stdint type usage
if you need C99 stdint types, just include "php_stdint.h"
Diffstat (limited to 'ext/standard/crypt_sha512.c')
-rw-r--r--ext/standard/crypt_sha512.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/standard/crypt_sha512.c b/ext/standard/crypt_sha512.c
index 0955532131..ebabed9d24 100644
--- a/ext/standard/crypt_sha512.c
+++ b/ext/standard/crypt_sha512.c
@@ -8,15 +8,9 @@
#include <errno.h>
#include <limits.h>
#ifdef PHP_WIN32
-# include "win32/php_stdint.h"
# define __alignof__ __alignof
# define alloca _alloca
#else
-# if HAVE_INTTYPES_H
-# include <inttypes.h>
-# elif HAVE_STDINT_H
-# include <stdint.h>
-# endif
# ifndef HAVE_ALIGNOF
# include <stddef.h>
# define __alignof__(type) offsetof (struct { char c; type member;}, member)