Chameleon Applications

Chameleon Applications Svn Source Tree

Root/branches/iFabio/Chameleon/i386/modules/klibc/klibc.c

Source at commit 307 created 13 years 12 days ago.
By ifabio, merge changes from trunk (929). Also merge the module changes from Azimutz branche (fix compile error) Also edited the info.plist into AHCIPortInjector.kext: http://forum.voodooprojects.org/index.php/topic,1170.0.html
1/*
2 * klibc.c
3 *
4 * glue + initialization
5 */
6
7#include "libsaio.h"
8
9int _DefaultRuneLocale;// todo: fixme
10
11void klibc_start()
12{
13}
14
15void _exit(int status)
16{
17 stop("exit() called\n");
18 while(1) halt(); // this is never reached
19}
20
21char __toupper(char c)
22{
23return ((c) & ~32);
24}
25
26void __divide_error()
27{
28stop("Divide by 0\n");
29}
30
31// hack
32int
33__maskrune(int _c, unsigned long _f)
34{
35return 0;
36//return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) :
37//_CurrentRuneLocale->__runetype[_c]) & _f;
38}
39

Archive Download this file

Revision: 307