Skip to content

Commit

Permalink
esp8266/axtls_helpers: Remove abort_(), now in lib/embed/.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfalcon committed Jul 29, 2016
1 parent c8b80e4 commit 50fea19
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions esp8266/axtls_helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 50fea19

Please sign in to comment.