Merge pull request #17 from lioncash/include

Add missing string.h includes
This commit is contained in:
TuxSH 2018-02-23 14:51:27 +01:00 committed by GitHub
commit 8e4a5bf32b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,5 @@
#include <stdint.h>
#include <string.h>
#include "utils.h"
#include "gcm.h"

View file

@ -1,5 +1,6 @@
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "utils.h"

View file

@ -1,4 +1,5 @@
#include <stdint.h>
#include <string.h>
#include "utils.h"
#include "randomcache.h"

View file

@ -1,5 +1,6 @@
#include <stdbool.h>
#include <stdint.h>
#include <string.h>
#include "utils.h"
#include "cache.h"

View file

@ -1,4 +1,5 @@
#include <stdint.h>
#include <string.h>
#include "utils.h"

View file

@ -1,4 +1,5 @@
#include <stdint.h>
#include <string.h>
#include "utils.h"
#include "userpage.h"