Newer
Older
ubixos / src / lib / libc / stdio / fd.c
@reddawg reddawg on 28 May 2002 449 bytes Its Been lots of work
/**************************************************************************************
 Copyright (c) 2002 The UbixOS Project
 All rights reserved.

 Redistribution and use in source and binary forms, with or without modification,
 are prohibited.

 $Id$

**************************************************************************************/

#include <stdio.h>

FILE fdTable[3] = {
  {0}, /* stdin */
  {1}, /* stdout */
  {2}  /* stderr */
  };