[BACK]Return to stdio.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/stdio.c between version 1.5 and 1.6

version 1.5, 2001/10/05 10:23:07 version 1.6, 2001/10/09 01:36:25
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/stdio.c,v 1.4 2000/11/13 01:48:13 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/stdio.c,v 1.5 2001/10/05 10:23:07 noro Exp $
 */  */
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 141  int unget_char(int c)
Line 141  int unget_char(int c)
   return c;    return c;
 }  }
   
   int win_put_string(char *s,FILE *file);
   
 int win_put_char(int c,FILE *file)  int win_put_char(int c,FILE *file)
 {  {
   static char s[2];    static char s[2];
Line 199  int w_fputc(int c, FILE *file)
Line 201  int w_fputc(int c, FILE *file)
   
 int w_fputs(char *s, FILE *file)  int w_fputs(char *s, FILE *file)
 {  {
   int status;  
   
   if ( file == stdout || file == stderr )    if ( file == stdout || file == stderr )
     return win_put_string(s,file);      return win_put_string(s,file);
   else    else

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>