11 lines
197 B
C
11 lines
197 B
C
|
#ifndef GO_TFLITE_H
|
||
|
#define GO_TFLITE_H
|
||
|
|
||
|
#define _GNU_SOURCE
|
||
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <tensorflow/lite/c/c_api_experimental.h>
|
||
|
#endif
|