diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-01-23 16:21:20 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-01-23 16:21:20 +0000 |
commit | 64b85a8f2359ca3a995499afaf3c87d8e036e030 (patch) | |
tree | c8f8396df5fde32181b5e93f241b64c604cf5df5 /ui/d3des.h | |
parent | ba76a84d2d420ccab7383bb60c61b96491f50b33 (diff) | |
download | qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.gz qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.tar.bz2 qemu-64b85a8f2359ca3a995499afaf3c87d8e036e030.zip |
Delete useless 'extern' qualifiers for functions
'extern' qualifier is useless for function declarations. Delete
them.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'ui/d3des.h')
-rw-r--r-- | ui/d3des.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/d3des.h b/ui/d3des.h index ea3da44ce9..78d546f7d8 100644 --- a/ui/d3des.h +++ b/ui/d3des.h @@ -22,25 +22,25 @@ #define EN0 0 /* MODE == encrypt */ #define DE1 1 /* MODE == decrypt */ -extern void deskey(unsigned char *, int); +void deskey(unsigned char *, int); /* hexkey[8] MODE * Sets the internal key register according to the hexadecimal * key contained in the 8 bytes of hexkey, according to the DES, * for encryption or decryption according to MODE. */ -extern void usekey(unsigned long *); +void usekey(unsigned long *); /* cookedkey[32] * Loads the internal key register with the data in cookedkey. */ -extern void cpkey(unsigned long *); +void cpkey(unsigned long *); /* cookedkey[32] * Copies the contents of the internal key register into the storage * located at &cookedkey[0]. */ -extern void des(unsigned char *, unsigned char *); +void des(unsigned char *, unsigned char *); /* from[8] to[8] * Encrypts/Decrypts (according to the key currently loaded in the * internal key register) one block of eight bytes at address 'from' |