X-Git-Url: http://git.tuebingen.mpg.de/?p=osl.git;a=blobdiff_plain;f=fsck.c;h=246a0b6f3c5f38a881227958d7769eb12d18cc39;hp=bd1b5567ba86c05d2f168ecf9506c8dcda7ab5f7;hb=884d9b3ac360755d8dd8e28e3d049cb6b0e2b1e8;hpb=22abcc2013d2f68ec55e5e0113c682899662c7d7 diff --git a/fsck.c b/fsck.c index bd1b556..246a0b6 100644 --- a/fsck.c +++ b/fsck.c @@ -121,8 +121,8 @@ static int _write_all(int fd, const char *buf, size_t len) return write_all(fd, buf, &len); } -/** - * Paraslash's version of malloc(). +/* + * Wrapper for malloc(). * * \param size The desired new size. * @@ -147,7 +147,7 @@ __must_check __malloc static void *fsck_malloc(size_t size) } /** - * Paraslash's version of calloc(). + * Allocate memory and fill with zeros. * * \param size The desired new size. * @@ -167,7 +167,7 @@ __must_check __malloc static void *fsck_calloc(size_t size) } /** - * Paraslash's version of strdup(). + * Save version of strdup(). * * \param s The string to be duplicated. *