Added more standard library header #includes to C code to be strict.

This commit is contained in:
Project Nayuki 2017-04-20 23:17:48 +00:00
parent 7bd3e8b8d9
commit 7580ee38e0
3 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@
* Software.
*/
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "qrcodegen.h"

View File

@ -27,6 +27,8 @@
#include <assert.h>
#include <limits.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -24,6 +24,7 @@
#include <assert.h>
#include <limits.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include "qrcodegen.h"