2025-02-14 16:47:45 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <tcc/state.h>
|
|
|
|
#include <tcc/memory.h>
|
2025-02-11 12:07:04 +00:00
|
|
|
#include <tcc/object.h>
|
|
|
|
#include <tcc/object/archive.h>
|
|
|
|
#include <tcc/object/coff.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
tcc_object_type(int fd, void *h)
|
|
|
|
{
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
|
|
|
|
return (0);
|
2025-02-14 16:47:45 +00:00
|
|
|
}
|