Graphviz 13.0.0~dev.20241220.2304
Loading...
Searching...
No Matches
unreachable.h
Go to the documentation of this file.
1
3#pragma once
4
5#include <assert.h>
6#include <stdio.h>
7#include <stdlib.h>
8
30#define UNREACHABLE() \
31 do { \
32 fprintf(stderr, "%s:%d: claimed unreachable code was reached\n", __FILE__, \
33 __LINE__); \
34 abort(); \
35 } while (0)