~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to incl/unixio.h

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)unixio.h 19.1 (ESO-IPG) 02/25/03 13:49:45 */
 
2
/*++++++++++++++
 
3
.IDENTIFICATION ftoc_sun.h
 
4
.LANGUAGE       C
 
5
.AUTHOR         C.Guirao.
 
6
.ENVIRONMENT    VMS 
 
7
.KEYWORDS       
 
8
.VERSION  1.0   20-Aug-1992
 
9
.COMMENTS       This file is meant here to avoid redefinitions for the
 
10
                GNU C compiler (VAX/VMS). 
 
11
                We cannot use the original one: SYS$SYSROOT:[SYSLIB]unixio.h
 
12
                because it contains the statements:
 
13
                         #pragma nostandard and
 
14
                         #pragma standard 
 
15
                that are ignored (and therefore causing errors) when the
 
16
                file is included with the GNU C compiler.
 
17
 
 
18
                This include file is used by all AGL modules.
 
19
---------------*/
 
20
 
 
21
/*      UNIXIO - V3.0 - Prototypes for UNIX emulation functions */
 
22
/*
 
23
/*#pragma nostandard
 
24
/*#include stdio
 
25
/*#include stat
 
26
/*#pragma standard
 
27
/*
 
28
/*int     access  (char *file_spec, int mode);
 
29
/*      UNIXIO - V3.0 - Prototypes for UNIX emulation functions */
 
30
/*
 
31
/*int     access  (char *file_spec, int mode);
 
32
/*int     close   (int file_desc);
 
33
/*int     creat   (char *file_spec, unsigned int mode, ...);
 
34
/*int     delete  (const char *file_spec);
 
35
/*int     dup     (int file_desc);
 
36
/*int     dup2    (int file_desc1, int file_desc2);
 
37
/*int     fstat   (int file_desc, stat_t *buffer);
 
38
/*char   *getname (int file_desc, char *buffer, ...);
 
39
/*int     isapipe (int file_desc);
 
40
/*int     isatty  (int file_desc);
 
41
/*int     lseek   (int file_desc, int offset, int direction);
 
42
/*char   *mktemp  (char *template);
 
43
/*int     read    (int file_desc, void *buffer, int nbytes);
 
44
/*int     rename  (const char *old_file_spec, const char *new_file_spec);
 
45
/*int     open    (char *file_spec, int flags, unsigned int mode, ...);
 
46
/*int     stat    (char *file_spec, stat_t *buffer);
 
47
/*char   *ttyname (void);
 
48
/*int     write   (int file_desc, void *buffer, int nbytes);
 
49
*/