Skip to content
Snippets Groups Projects
Commit aeef6c9c authored by dkg's avatar dkg
Browse files

fill RAM with a certain pattern.

parent c68d5419
Branches
Tags
No related merge requests found
splicenull
rambuilder
#include <stdio.h>
#include <string.h>
int main(int argc, const char * argv[]) {
char * today;
today = strdup(argv[1]);
while (today)
today = strdup(argv[1]);
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment