14 lines
158 B
C
14 lines
158 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <malloc.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
struct mstats ms;
|
||
|
|
||
|
ms = mstats();
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|