Add missing #includes to fix 'make checkheaders'.
author |
diego |
date |
Sat, 24 Nov 2007 10:08:02 +0000 |
parents |
f9a4c04ebb0e |
children |
aedb9d18c7cf |
files |
des.h rc4.h |
diffstat |
2 files changed, 4 insertions(+), 0 deletions(-)
[+]
|
line diff
--- a/des.h Fri Nov 23 00:52:56 2007 +0000
+++ b/des.h Sat Nov 24 10:08:02 2007 +0000
@@ -22,6 +22,8 @@
#ifndef FFMPEG_DES_H
#define FFMPEG_DES_H
+#include <inttypes.h>
+
/**
* \brief en- or decrypt an 64-bit block of data with DES
* \param in data to process.
--- a/rc4.h Fri Nov 23 00:52:56 2007 +0000
+++ b/rc4.h Sat Nov 24 10:08:02 2007 +0000
@@ -21,6 +21,8 @@
#ifndef FFMPEG_RC4_H
#define FFMPEG_RC4_H
+#include <inttypes.h>
+
void ff_rc4_enc(const uint8_t *key, int keylen, uint8_t *data, int datalen);
#endif /* FFMPEG_RC4_H */