regular.c (5e3934b15a2741b2de6b217e77dc9d798d740804) | regular.c (d350e8d795d53dbc58ea428f76355cf5e28f6116) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1991, 1993, 1994 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 23 unchanged lines hidden (view full) --- 32#include <sys/param.h> 33#include <sys/mman.h> 34#include <sys/stat.h> 35 36#include <capsicum_helpers.h> 37#include <err.h> 38#include <limits.h> 39#include <signal.h> | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1991, 1993, 1994 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 23 unchanged lines hidden (view full) --- 32#include <sys/param.h> 33#include <sys/mman.h> 34#include <sys/stat.h> 35 36#include <capsicum_helpers.h> 37#include <err.h> 38#include <limits.h> 39#include <signal.h> |
40#include <stdbool.h> |
|
40#include <stdlib.h> 41#include <stdio.h> 42#include <unistd.h> 43 44#include "extern.h" 45 46static u_char *remmap(u_char *, int, off_t); 47static void segv_handler(int); --- 140 unchanged lines hidden --- | 41#include <stdlib.h> 42#include <stdio.h> 43#include <unistd.h> 44 45#include "extern.h" 46 47static u_char *remmap(u_char *, int, off_t); 48static void segv_handler(int); --- 140 unchanged lines hidden --- |