mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fix to net::os::posix. Remove "\s"
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
module std::net::os;
|
||||
import libc;
|
||||
|
||||
$if env::os_is_win32() && $defined(AddrInfo):
|
||||
$if !env::os_is_win32() && $defined(AddrInfo):
|
||||
|
||||
const int F_GETFL = 3;
|
||||
const int F_SETFL = 4;
|
||||
|
||||
@@ -500,8 +500,6 @@ static inline signed char char_is_valid_escape(char c)
|
||||
return '\\';
|
||||
case '0':
|
||||
return '\0';
|
||||
case 's':
|
||||
return ' ';
|
||||
default:
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
#define COMPILER_VERSION "0.4.509"
|
||||
#define COMPILER_VERSION "0.4.510"
|
||||
Reference in New Issue
Block a user