Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stdlib.h « machine « powerpc « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17e9dc32d2802902175d4eebd8a22aa839888f00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef	_MACHSTDLIB_H_
#define	_MACHSTDLIB_H_

#ifndef __STRICT_ANSI__

# if defined(__ALTIVEC__)

_PTR    _EXFUN(vec_calloc,(size_t __nmemb, size_t __size));
_PTR    _EXFUN(_vec_calloc_r,(struct _reent *, size_t __nmemb, size_t __size));
_VOID   _EXFUN(vec_free,(_PTR));
#define _vec_freer _freer
_PTR    _EXFUN(vec_malloc,(size_t __size));
#define _vec_mallocr _memalign_r
_PTR    _EXFUN(vec_realloc,(_PTR __r, size_t __size));
_PTR    _EXFUN(_vec_realloc_r,(struct _reent *, _PTR __r, size_t __size));

# endif /* __ALTIVEC__ */

#endif /* !__STRICT_ANSI__ */


#endif	/* _MACHSTDLIB_H_ */