head	1.1;
branch	1.1.1;
access;
symbols
	libc-4-7-4:1.1.1.1
	libc-4-7-3:1.1.1.1
	libc-4-7-2:1.1.1.1
	libc-4-7-1-b:1.1.1.1.0.4
	libc-4-7-1:1.1.1.1
	libc-4-7-0:1.1.1.1
	libc-4-6-27-patches:1.1.1.1.0.2
	libc-4-6-30:1.1.1.1
	libc-4-6-29:1.1.1.1
	libc-4-6-28-6:1.1.1.1
	libc-4-6-28-5:1.1.1.1
	libc-4-6-28-4:1.1.1.1
	libc-4-6-28-3:1.1.1.1
	libc-4-6-28-2:1.1.1.1
	libc-4-6-28-1:1.1.1.1
	libc-4-6-28:1.1.1.1
	libc-4-6-27:1.1.1.1
	linux:1.1.1;
locks; strict;
comment	@# @;


1.1
date	95.02.18.05.33.17;	author hjl;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	95.02.18.05.33.18;	author hjl;	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
@The Linux C library 4.6.27 (source files).
@
text
@@
