瀏覽代碼

add multiple inclusion guard to locale_impl.h

Rich Felker 10 年之前
父節點
當前提交
32f3c4f706
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/internal/locale_impl.h

+ 5 - 0
src/internal/locale_impl.h

@@ -1,3 +1,6 @@
+#ifndef _LOCALE_IMPL_H
+#define _LOCALE_IMPL_H
+
 #include <locale.h>
 #include <stdlib.h>
 #include "libc.h"
@@ -30,3 +33,5 @@ const char *__lctrans_cur(const char *);
 #define CURRENT_LOCALE (__pthread_self()->locale)
 
 #define CURRENT_UTF8 (!!__pthread_self()->locale->cat[LC_CTYPE])
+
+#endif