From: deraadt Date: Fri, 17 May 2024 06:11:54 +0000 (+0000) Subject: use SIGKILL instead of 9; ok guenther X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c694ed72f8643fd73f9328c655d7d24eb07c9d05;p=openbsd use SIGKILL instead of 9; ok guenther --- diff --git a/libexec/ld.so/util.h b/libexec/ld.so/util.h index 6b4f3aaef5e..5f9d6063101 100644 --- a/libexec/ld.so/util.h +++ b/libexec/ld.so/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.40 2023/12/08 12:58:27 deraadt Exp $ */ +/* $OpenBSD: util.h,v 1.41 2024/05/17 06:11:54 deraadt Exp $ */ /* * Copyright (c) 1998 Todd C. Miller @@ -32,6 +32,7 @@ #define __DL_UTIL_H__ #include +#include #include #include /* for NULL */ @@ -72,7 +73,7 @@ long _dl_strtol(const char *nptr, char **endptr, int base); __dead void _dl_oom(void); __dead void _dl_die(const char *, ...) __attribute__((format (printf, 1, 2))); -#define _dl_diedie() _dl_thrkill(0, 9, NULL) +#define _dl_diedie() _dl_thrkill(0, SIGKILL, NULL) __END_HIDDEN_DECLS #define _dl_round_page(x) \