Graphviz 12.0.1~dev.20240715.2254
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)