/[gxemul]/trunk/src/misc.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/misc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 41 by dpavlin, Mon Oct 8 16:21:17 2007 UTC revision 42 by dpavlin, Mon Oct 8 16:22:32 2007 UTC
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *   *
27   *   *
28   *  $Id: misc.c,v 1.6 2006/12/30 13:30:52 debug Exp $   *  $Id: misc.c,v 1.9 2007/06/15 17:02:38 debug Exp $
29   *   *
30   *  This file contains things that don't fit anywhere else, and fake/dummy   *  This file contains things that don't fit anywhere else, and fake/dummy
31   *  implementations of libc functions that are missing on some systems.   *  implementations of libc functions that are missing on some systems.
# Line 36  Line 36 
36  #include <string.h>  #include <string.h>
37  #include <fcntl.h>  #include <fcntl.h>
38    
39    #include "cpu.h"
40  #include "misc.h"  #include "misc.h"
41    
42    
# Line 156  size_t mystrlcat(char *dst, const char * Line 157  size_t mystrlcat(char *dst, const char *
157  }  }
158  #endif  #endif
159    
160    
161    /*
162     *  print_separator_line():
163     *
164     *  Prints a line of "----------".
165     */
166    void print_separator_line(void)
167    {
168            int i = 79;
169            while (i-- > 0)
170                    debug("-");
171            debug("\n");
172    }
173    

Legend:
Removed from v.41  
changed lines
  Added in v.42

  ViewVC Help
Powered by ViewVC 1.1.26