소스 검색

[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];