Skip to content

Commit

Permalink
Update syscalls_cpp.cpp
Browse files Browse the repository at this point in the history
fix: 无法识别pid_t类型错误 error: unknown type name ‘pid_t’
https://blog.csdn.net/m0_47634756/article/details/121243320
  • Loading branch information
RealManShao committed Jul 29, 2024
1 parent 2039ff8 commit f1dda09
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion os/various/cpp_wrappers/syscalls_cpp.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <stdio.h>
#include <errno.h>

#include <unistd.h>
#include <sys/types.h>
#include "osal.h"

#include "syscalls_cpp.hpp"
Expand Down

0 comments on commit f1dda09

Please sign in to comment.