Magellan Linux

Diff of /trunk/mkinitrd-magellan/klibc/usr/dash/memalloc.h

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

revision 814 by niro, Sat Sep 1 22:45:15 2007 UTC revision 815 by niro, Fri Apr 24 18:32:46 2009 UTC
# Line 64  char *stnputs(const char *, size_t, char Line 64  char *stnputs(const char *, size_t, char
64  char *stputs(const char *, char *);  char *stputs(const char *, char *);
65    
66    
67  static inline char *_STPUTC(char c, char *p) {  static inline char *_STPUTC(int c, char *p) {
68   if (p == sstrend)   if (p == sstrend)
69   p = growstackstr();   p = growstackstr();
70   *p++ = c;   *p++ = c;

Legend:
Removed from v.814  
changed lines
  Added in v.815