Commit ef9616775e33ce8ba43fc441e15034b587ede16e

Authored by Jay Berkenbilt
1 parent 0e65d9c2

Fix headers for rijndael.h

Showing 1 changed file with 2 additions and 7 deletions
libqpdf/qpdf/rijndael.h
... ... @@ -2,13 +2,8 @@
2 2 #define RIJNDAEL_H
3 3  
4 4 #include <qpdf/qpdf-config.h>
5   -#ifdef HAVE_INTTYPES_H
6   -# include <inttypes.h>
7   -#endif
8   -#ifdef HAVE_STDINT_H
9   -# include <stdint.h>
10   -#endif
11   -#include <stddef.h>
  5 +#include <cstdint>
  6 +#include <cstddef>
12 7  
13 8 unsigned int rijndaelSetupEncrypt(uint32_t* rk, const unsigned char* key, size_t keybits);
14 9 unsigned int rijndaelSetupDecrypt(uint32_t* rk, const unsigned char* key, size_t keybits);
... ...