Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Nodemcu Firmware
Commits
19fda87e
Commit
19fda87e
authored
Jan 23, 2016
by
devsaurus
Browse files
enable -std=gnu11 for http dir
parent
8befcf08
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/http/Makefile
View file @
19fda87e
...
...
@@ -15,6 +15,7 @@ ifndef PDIR
GEN_LIBS
=
libhttp.a
endif
STD_CFLAGS
=
-std
=
gnu11
-Wimplicit
#############################################################
# Configuration i.e. compile options etc.
...
...
app/include/rom.h
View file @
19fda87e
...
...
@@ -122,6 +122,7 @@ char *ets_strcpy (char *dst, const char *src);
size_t
ets_strlen
(
const
char
*
s
);
int
ets_strcmp
(
const
char
*
s1
,
const
char
*
s2
);
int
ets_strncmp
(
const
char
*
s1
,
const
char
*
s2
,
size_t
n
);
char
*
ets_strstr
(
const
char
*
haystack
,
const
char
*
needle
);
void
ets_delay_us
(
uint32_t
us
);
...
...
sdk-overrides/include/osapi.h
View file @
19fda87e
...
...
@@ -4,6 +4,7 @@
#include "rom.h"
void
ets_timer_arm_new
(
ETSTimer
*
a
,
int
b
,
int
c
,
int
isMstimer
);
int
atoi
(
const
char
*
nptr
);
int
os_printf
(
const
char
*
format
,
...)
__attribute__
((
format
(
printf
,
1
,
2
)));
int
os_printf_plus
(
const
char
*
format
,
...)
__attribute__
((
format
(
printf
,
1
,
2
)));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment