mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
7 lines
77 B
C
7 lines
77 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
(void) malloc(42);
|
||
|
return 0;
|
||
|
}
|