source: trunk/libs/newlib/src/newlib/libc/machine/powerpc/atoufix32.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 347 bytes
Line 
1/*
2 * Jeff Johnston - 02/13/2002
3 */
4
5#ifdef __SPE__
6
7#include <stdlib.h>
8#include <_ansi.h>
9
10__uint32_t
11_atoufix32_r (struct _reent *reent,
12        const char *s)
13{
14  return _strtoufix32_r (reent, s, NULL);
15}
16
17#ifndef _REENT_ONLY
18__uint32_t
19atoufix32 (const char *s)
20{
21  return strtoufix32 (s, NULL);
22}
23
24#endif /* !_REENT_ONLY */
25
26#endif /* __SPE__ */
Note: See TracBrowser for help on using the repository browser.