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

LibC: Fix typo in signal.h: ol_dset -> old_set

This commit is contained in:
dhirsbrunner 2021-04-25 18:25:32 -05:00 committed by Andreas Kling
parent b4e125cf86
commit cd9e352460

View file

@ -44,7 +44,7 @@ struct sigaction {
int kill(pid_t, int sig);
int killpg(int pgrp, int sig);
sighandler_t signal(int sig, sighandler_t);
int pthread_sigmask(int how, const sigset_t* set, sigset_t* ol_dset);
int pthread_sigmask(int how, const sigset_t* set, sigset_t* old_set);
int sigaction(int sig, const struct sigaction* act, struct sigaction* old_act);
int sigemptyset(sigset_t*);
int sigfillset(sigset_t*);