diff options
| -rw-r--r-- | clang-tools-extra/test/clang-tidy/bugprone-posix-return.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/bugprone-posix-return.cpp b/clang-tools-extra/test/clang-tidy/bugprone-posix-return.cpp index bfd3c14a744..160f567cffa 100644 --- a/clang-tools-extra/test/clang-tidy/bugprone-posix-return.cpp +++ b/clang-tools-extra/test/clang-tidy/bugprone-posix-return.cpp @@ -4,9 +4,9 @@ #define ZERO 0 #define NEGATIVE_ONE -1 +typedef int pid_t; typedef long off_t; typedef decltype(sizeof(int)) size_t; -typedef int pid_t; typedef struct __posix_spawn_file_actions* posix_spawn_file_actions_t; typedef struct __posix_spawnattr* posix_spawnattr_t; |

