Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5496 leency 1
/*	Copyright (C) 2006 Garrett A. Kajmowicz
2
 
3
	This file is part of the uClibc++ Library.
4
	This library is free software; you can redistribute it and/or
5
	modify it under the terms of the GNU Lesser General Public
6
	License as published by the Free Software Foundation version 2.1
7
 
8
	This library is distributed in the hope that it will be useful,
9
	but WITHOUT ANY WARRANTY; without even the implied warranty of
10
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
	Lesser General Public License for more details.
12
 
13
	You should have received a copy of the GNU Lesser General Public
14
	License along with this library; if not, write to the Free Software
15
	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
*/
17
 
18
#include 
19
#include 
20
 
21
#ifndef __HEADER_CSTDIO
22
#define __HEADER_CSTDIO 1
23
 
24
 
25
namespace std{
26
	using ::FILE;
27
	using ::fpos_t;
28
 
29
	using ::clearerr;
30
	using ::fclose;
31
	using ::feof;
32
	using ::ferror;
33
	using ::fflush;
34
	using ::fgetc;
35
	using ::fgetpos;
36
	using ::fgets;
37
	using ::fopen;
38
	using ::fprintf;
39
	using ::fputc;
40
	using ::fputs;
41
	using ::fread;
42
	using ::freopen;
43
	using ::fscanf;
44
	using ::fseek;
45
	using ::fsetpos;
46
	using ::ftell;
47
	using ::fwrite;
48
	using ::getc;
49
	using ::getchar;
50
	using ::gets;
51
	using ::perror;
52
	using ::printf;
53
	using ::putc;
54
	using ::putchar;
55
	using ::puts;
56
	using ::remove;
57
	using ::rename;
58
	using ::rewind;
59
	using ::scanf;
60
	using ::setbuf;
61
	using ::setvbuf;
62
	using ::sprintf;
63
	using ::sscanf;
64
	using ::tmpfile;
65
	using ::tmpnam;
66
	using ::ungetc;
67
	using ::vfprintf;
68
	using ::vprintf;
69
	using ::vsprintf;
70
}
71
 
72
 
73
 
74
#endif
75