Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
Fix by providing prototype definition, as the actual function is insi…
Browse files Browse the repository at this point in the history
…de libc, just not exposed.
  • Loading branch information
aentinger committed Aug 9, 2023
1 parent c25506d commit b2c9cce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/nmea/GxGGA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
# include <stdlib_noniso.h>
#endif

#ifdef ARDUINO_ARCH_RENESAS
extern "C" char * _EXFUN(strsep,(char **, const char *));
#endif

#include "util/gga.h"
#include "util/common.h"
#include "util/checksum.h"
Expand Down
4 changes: 4 additions & 0 deletions src/nmea/GxRMC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
# include <stdlib_noniso.h>
#endif

#ifdef ARDUINO_ARCH_RENESAS
extern "C" char * _EXFUN(strsep,(char **, const char *));
#endif

#include "util/rmc.h"
#include "util/common.h"
#include "util/checksum.h"
Expand Down

0 comments on commit b2c9cce

Please sign in to comment.