From 4052d7b4c0e1a59419f07642b9a33088f5745d28 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Wed, 14 May 2025 13:43:55 +0200 Subject: BFS: AspectC++ (and behaviour model) support --- BFS/support/utils.h | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 BFS/support/utils.h (limited to 'BFS/support/utils.h') diff --git a/BFS/support/utils.h b/BFS/support/utils.h deleted file mode 100644 index ccd8fbd..0000000 --- a/BFS/support/utils.h +++ /dev/null @@ -1,10 +0,0 @@ - -#ifndef _UTILS_H_ -#define _UTILS_H_ - -#define PRINT_ERROR(fmt, ...) fprintf(stderr, "\033[0;31mERROR:\033[0m " fmt "\n", ##__VA_ARGS__) -#define PRINT_WARNING(fmt, ...) fprintf(stderr, "\033[0;35mWARNING:\033[0m " fmt "\n", ##__VA_ARGS__) -#define PRINT_INFO(cond, fmt, ...) if(cond) printf("\033[0;32mINFO:\033[0m " fmt "\n", ##__VA_ARGS__); -#define PRINT(fmt, ...) printf(fmt "\n", ##__VA_ARGS__) - -#endif -- cgit v1.2.3