Newer
Older
ubixos / src / lib / libc / stdio / fprintf.c
@reddawg reddawg on 28 May 2002 507 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$

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

int fprintf(FILE *fp, const char *fmt, ...) {
  int retVal;
  vaList ap;
  vaStart(ap, fmt);
  retVal = vfprintf(fp, fmt, ap);
  vaEnd(ap);
  return(retVal);
  }