mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
POSIX specifies strcasecmp/strncasecmp in <strings.h>, not <string.h>. On NuttX (and other strict POSIX environments) rcutils/src/strcasecmp.c only includes <string.h>, causing an implicit-declaration error for strcasecmp when cross-compiling. Patch 0003 adds #include <strings.h> guarded by !_WIN32, matching the existing Windows/POSIX split in the file. Signed-off-by: Arjav Patel <arjav1528@gmail.com> |
||
|---|---|---|
| .. | ||
| 0001-dir-typedef-nuttx-guard.patch | ||
| 0002-rcutils-process-nuttx-compat.patch | ||
| 0003-rcutils-strcasecmp-include-strings-h.patch | ||