Skip to content

Commit

Permalink
<stdio.h> shouldn't be required
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Jan 26, 2025
1 parent b6bfaf5 commit 59a98bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/libsodium/crypto_pwhash/argon2/argon2-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
*/

#include <errno.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion src/libsodium/crypto_pwhash/argon2/argon2-encoding.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "argon2-core.h"
#include "utils.h"
#include <limits.h>
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion src/libsodium/crypto_pwhash/argon2/argon2.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
*/

#include <limits.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion src/libsodium/include/sodium/crypto_onetimeauth_poly1305.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef crypto_onetimeauth_poly1305_H
#define crypto_onetimeauth_poly1305_H

#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

#include <sys/types.h>
Expand Down

0 comments on commit 59a98bc

Please sign in to comment.