Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/algol60/src/lib/machines/sunos/sparc/include/stdio.h – Rev 2

Subversion Repositories tendra.SVN

Rev

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

Rev Author Line No. Line
2 7u83 1
#ifndef __HACKED_STDIO_INCLUDED
2
#define __HACKED_STDIO_INCLUDED
3
 
4
#ifdef __BUILDING_LIBS
5
#define sprintf		__sprintf_wrong
6
#endif
7
 
8
#include_next <stdio.h>
9
 
10
#ifdef __BUILDING_LIBS
11
#undef sprintf
12
#endif
13
 
14
#ifndef SEEK_SET
15
#define SEEK_SET 0
16
#define SEEK_CUR 1
17
#define SEEK_END 2
18
#endif
19
 
20
typedef long fpos_t ;
21
 
22
#ifndef FILENAME_MAX
23
#define FILENAME_MAX 255
24
#endif
25
 
26
#ifndef FOPEN_MAX
27
#define FOPEN_MAX 60
28
#endif
29
 
30
#ifndef TMP_MAX
31
#define TMP_MAX 10000
32
#endif
33
 
34
#endif