Skip to content

Commit

Permalink
Merge pull request #3143 from kekxv/patch-2
Browse files Browse the repository at this point in the history
fix: ssize_t 旧版本gcc未定义问题
  • Loading branch information
jxt1234 authored Dec 31, 2024
2 parents aa22839 + 0f1f18a commit 20a2d95
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions source/backend/cpu/compute/ResizeFunction.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@

#include <stdint.h>
#include <stdio.h>
#ifdef __linux__
#include <sys/types.h>
#endif
#include "core/Macro.h"
#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit 20a2d95

Please sign in to comment.