/*
 *
 *  Copyright (C) 2024-2025  Yurii Yakubin (yurii.yakubin@gmail.com)
 *
 */

#ifndef _BITS_FILE_STRUCT_H
#define _BITS_FILE_STRUCT_H

typedef struct __file_struct FILE;
struct __file_struct {
  int fd;
};

#endif /* _BITS_FILE_STRUCT_H */
