mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
23 lines
254 B
C
23 lines
254 B
C
#ifndef LIBA_STRINGS_H
|
|
#define LIBA_STRINGS_H
|
|
|
|
#if (_FXCG) || defined NSPIRE_NEWLIB
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "../private/macros.h"
|
|
|
|
LIBA_BEGIN_DECLS
|
|
|
|
void bzero(void * s, size_t n);
|
|
|
|
LIBA_END_DECLS
|
|
|
|
#else
|
|
|
|
#include_next <strings.h>
|
|
|
|
#endif
|
|
|
|
#endif
|