24 lines
256 B
C
24 lines
256 B
C
/*
|
|
* Copyright 2022 Oleg Borodin <borodin@unix7.org>
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
|
|
#include <massert.h>
|
|
#include <cdynarr.h>
|
|
|
|
|
|
void test01(void) {
|
|
|
|
|
|
|
|
}
|
|
|
|
int main(void) {
|
|
test01();
|
|
return 0;
|
|
}
|