head	1.1;
branch	1.1.1;
access;
symbols
	LIBC_4_5_19:1.1.1.1
	LIBC_4_5_18:1.1.1.1
	LIBC_4_5_17:1.1.1.1
	LIBC_4_5_16:1.1.1.1
	LIBC_4_5_15:1.1.1.1
	LIBC_4_5_14:1.1.1.1
	LIBC_4_5_13:1.1.1.1
	LIBC_4_5_12:1.1.1.1
	LIBC_4_5_11:1.1.1.1
	LIBC_4_5_10:1.1.1.1
	LIBC_4_5_9:1.1.1.1
	LIBC_4_5_8:1.1.1.1
	LIBC_4_5_7:1.1.1.1
	LIBC:1.1.1;
locks; strict;
comment	@# @;


1.1
date	93.12.14.16.58.39;	author steinber;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	93.12.14.16.58.40;	author steinber;	state Exp;
branches;
next	;


desc
@@



1.1
log
@Initial revision
@
text
@*** printw.c.ORIG	Sat Jan 25 06:19:45 1992
--- printw.c	Sat Jan 25 06:26:19 1992
***************
*** 131,141 ****
  #endif
  	va_list	ap;
  {
! 	FILE *f;
! 	extern FILE *fwopen();
  
! 	if ((f = fwopen((void *)win, _winwrite)) == NULL)
  		return ERR;
! 	(void) vfprintf(f, fmt, ap);
! 	return fclose(f) ? ERR : OK;
  }
--- 131,140 ----
  #endif
  	va_list	ap;
  {
! 	char buf[1024];
  
! 	vsprintf(buf, fmt, ap);
! 	if (_winwrite(win, buf, strlen(buf)))
  		return ERR;
! 	return OK;
  }
@


1.1.1.1
log
@LIBC_4_5_7
@
text
@@
