mirror of https://github.com/t1meshift/os_labs.git
9 lines
115 B
C
9 lines
115 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/mman.h>
|
||
|
|
||
|
int main() {
|
||
|
char *a = malloc(1024);
|
||
|
|
||
|
return 0;
|
||
|
}
|