mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
10 lines
147 B
C
10 lines
147 B
C
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
int main ( void )
|
|
{
|
|
char* arr = malloc(10);
|
|
(void) write( 1 /* stdout */, arr, 10 );
|
|
return 0;
|
|
}
|