Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
50fea194
Commit
50fea194
authored
Jul 30, 2016
by
Paul Sokolovsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
esp8266/axtls_helpers: Remove abort_(), now in lib/embed/.
parent
c8b80e47
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
esp8266/axtls_helpers.c
esp8266/axtls_helpers.c
+0
-3
No files found.
esp8266/axtls_helpers.c
View file @
50fea194
...
...
@@ -43,9 +43,6 @@ void *calloc(size_t nmemb, size_t size) {
void
*
realloc
(
void
*
ptr
,
size_t
size
)
{
return
gc_realloc
(
ptr
,
size
,
true
);
}
void
abort_
(
void
)
{
printf
(
"Aborted
\n
"
);
}
#define PLATFORM_HTONL(_n) ((uint32_t)( (((_n) & 0xff) << 24) | (((_n) & 0xff00) << 8) | (((_n) >> 8) & 0xff00) | (((_n) >> 24) & 0xff) ))
#undef htonl
...
...
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