mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 03:50:57 +01:00
changed invalid // c++ comments to valid /* .. */ C comments
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user