瀏覽代碼

[cstr_fixed.h] Moving include to top of file

Vinicius Teshima 2 年之前
父節點
當前提交
4d0efa5bca
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      include/toolbox/cstr_fixed.h

+ 2 - 2
include/toolbox/cstr_fixed.h

@@ -1,12 +1,12 @@
 #ifndef TOOLBOX_CSTR_FIXED_H
 #define TOOLBOX_CSTR_FIXED_H
 
+#include <stddef.h>
+
 #ifndef TOOLBOX_CSTR_FIXED_MAX_SIZE
 #define TOOLBOX_CSTR_FIXED_MAX_SIZE ((size_t) 255L)
 #endif
 
-#include <stddef.h>
-
 struct cstr_fixed {
 	size_t size;
 	char data[TOOLBOX_CSTR_FIXED_MAX_SIZE];