Skip to content

Instantly share code, notes, and snippets.

@tmbartol
tmbartol / memtest.c
Last active December 21, 2015 23:29
Stupid, simple memory exerciser.
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
main(argc,argv)
int argc;
char **argv;
{
char *array;
unsigned long long int n_bytes,t,i,j;