mirror of https://github.com/t1meshift/os_labs.git
10 lines
147 B
C
10 lines
147 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <sys/mman.h>
|
||
|
|
||
|
int main() {
|
||
|
int *data = malloc(100 * sizeof(int));
|
||
|
data[100] = 0;
|
||
|
|
||
|
return 0;
|
||
|
}
|