瀏覽代碼

Revert "make isspace static" - prototype for isspace() is defined by C99, so can't be static

This reverts commit ed06bd8a89.
tags/v0.9.3
Holger Lubitz 17 年之前
父節點
當前提交
52e5c24565
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/core/misc.c

+ 1
- 1
src/core/misc.c 查看文件

@@ -42,7 +42,7 @@ int inet_aton ( const char *cp, struct in_addr *inp ) {
42 42
 	return 0;
43 43
 }
44 44
 
45
-static int isspace ( int c ) {
45
+int isspace ( int c ) {
46 46
 	switch ( c ) {
47 47
 	case ' ':
48 48
 	case '\f':

Loading…
取消
儲存