1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:17:45 +00:00

Everywhere: Refer to pthread.h by its non-prefixed name

This removes a bit of noise from the following patches, where we will
move the `pthread.h` header out of the `LibPthread` directory.
This commit is contained in:
Tim Schumacher 2022-07-15 13:57:52 +02:00 committed by Linus Groh
parent 268c146c04
commit e156f79f53
7 changed files with 7 additions and 7 deletions

View file

@ -6,7 +6,7 @@
#pragma once
#include <LibPthread/pthread.h>
#include <pthread.h>
struct PthreadFunctions {
int (*pthread_mutex_trylock)(pthread_mutex_t* mutex);