[BACK]Return to term_ascii.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/term_ascii.c between version 1.1 and 1.4

version 1.1, 2010/06/08 15:00:17 version 1.4, 2010/06/19 20:46:28
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 24 
Line 24 
 #include <stdint.h>  #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
   #include <unistd.h>
   
 #include "out.h"  #include "out.h"
 #include "term.h"  #include "term.h"
Line 86  static void
Line 87  static void
 ascii_letter(struct termp *p, char c)  ascii_letter(struct termp *p, char c)
 {  {
   
         /* Just push onto the screen. */  
         putchar(c);          putchar(c);
 }  }
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.4

CVSweb