#!/bin/bash

## Copyright (C) 2020 - 2025 ENCRYPTED SUPPORT LLC <adrelanos@whonix.org>
## See the file COPYING for copying conditions.

if grep -q "libhardened_malloc" "/proc/$$/maps"; then
    echo "yes"
    exit 0
fi

echo "no"
exit 1
