Tweaked C code to be more correct regarding #include <stddef.h> for size_t.

This commit is contained in:
Project Nayuki 2017-07-04 05:27:18 +00:00
parent c42fd75b77
commit 047f85d164
2 changed files with 1 additions and 1 deletions

View File

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

View File

@ -24,6 +24,7 @@
#pragma once
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>