[BACK]Return to buf.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/buf.h between version 1.19 and 1.20

version 1.19, 2010/07/19 19:46:43 version 1.20, 2012/09/21 07:55:20
Line 133 
Line 133 
  *      Removes non-backslashed spaces at the end of a buffer. */   *      Removes non-backslashed spaces at the end of a buffer. */
 extern void Buf_KillTrailingSpaces(Buffer);  extern void Buf_KillTrailingSpaces(Buffer);
   
   extern void Buf_printf(Buffer, const char *, ...);
   #define Buf_puts(b, s)  Buf_AddChars((b), strlen(s), (s))
   
 #endif /* _BUF_H */  #endif /* _BUF_H */

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20