blob: 7991b0c2382b7984834ce2543336fa0739322887 (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright: SPDX-License-Identifier: GPL-3.0-only
#include "common_public.h"
// this dummy exists to have a special pointer with special meaning
// other than NULL
void _caller_responsibility(void *ptr) {
(void)(ptr);
}
|