Changeset 3904
- Timestamp:
- 11/22/09 23:16:53 (3 years ago)
- Files:
-
- trunk/freewrt/tools/paxmirabilis/fgetln.c (modified) (3 diffs)
- trunk/freewrt/tools/paxmirabilis/strlfun.c (modified) (1 diff)
- trunk/freewrt/tools/paxmirabilis/strmode.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/tools/paxmirabilis/fgetln.c
r3882 r3904 1 /* $FreeWRT: contrib/code/mirmake/dist/contrib/fgetln.c,v 1.5 2009/05/20 10:40:28 tg Exp $ */2 3 1 /*- 4 * Copyright (c) 2007 5 * Thorsten Glaser <tg@mirbsd. de>2 * Copyright (c) 2007, 2009 3 * Thorsten Glaser <tg@mirbsd.org> 6 4 * 7 5 * Provided that these terms and disclaimer and all copyright notices … … 28 26 #include <string.h> 29 27 30 __RCSID("$MirOS: contrib/code/mirmake/dist/contrib/fgetln.c,v 1. 5 2009/05/20 10:40:28tg Exp $");28 __RCSID("$MirOS: contrib/code/mirmake/dist/contrib/fgetln.c,v 1.6 2009/11/21 14:50:27 tg Exp $"); 31 29 32 30 #if defined(__GLIBC__) … … 43 41 44 42 if ((*len = getline(&lb, &lbsz, stream)) != (size_t)-1) 43 /* getdelim ensures *len is not 0 here */ 45 44 return (lb); 46 45 trunk/freewrt/tools/paxmirabilis/strlfun.c
r3793 r3904 75 75 76 76 #if !defined(_KERNEL) && !defined(_STANDALONE) 77 __RCSID("$MirOS: src/lib/libc/string/strlfun.c,v 1.18 2008/08/01 12:26:17 tg Exp$");77 __RCSID("$MirOS: contrib/code/jupp/strlfun.c,v 1.9 2008/08/01 12:29:27 tg Rel $"); 78 78 #endif 79 79 trunk/freewrt/tools/paxmirabilis/strmode.c
r2027 r3904 32 32 #include <sys/stat.h> 33 33 #include <string.h> 34 35 void strmode(mode_t, char *);36 34 37 35 void


