Open64 (mfef90, whirl2f, and IR tools)  TAG: version-openad; SVN changeset: 916
x_stdio.c
Go to the documentation of this file.
00001 /* $Id: x_stdio.c,v 1.2 2004-02-28 21:05:05 eraxxon Exp $ */
00002 /* -*-Mode: C;-*- */
00003 /* * BeginRiceCopyright *****************************************************
00004  * 
00005  * ******************************************************* EndRiceCopyright */
00006 
00007 /*************************** System Include Files ***************************/
00008 
00009 #include <stdio.h>
00010 
00011 /**************************** User Include Files ****************************/
00012 
00013 #include "x_stdio.h"
00014 
00015 /**************************** Forward Declarations **************************/
00016 
00017 /****************************************************************************/
00018 
00019 extern int ux_fileno(FILE *stream)
00020 { return fileno(stream); }
00021 
00022 extern FILE *ux_fdopen(int fildes, const char *mode)
00023 { return fdopen(fildes, mode); }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines