changed invalid // c++ comments to valid /* .. */ C comments

This commit is contained in:
TLINDEN
2014-02-05 20:41:16 +01:00
parent 6f3bdda6f1
commit 8f24fc88f8
43 changed files with 383 additions and 427 deletions

View File

@@ -38,7 +38,7 @@ void *ucmalloc(size_t s) {
memset (value, 0, size);
//printf("allocated %d bytes at %p\n", (int)size, value);
/* printf("allocated %d bytes at %p\n", (int)size, value); */
return value;
}
@@ -52,7 +52,3 @@ void *urmalloc(size_t s) {
}
void *ucfree(void *ptr) {
free(ptr);
ptr = NULL;
}