Raspberry Vanilla IPMT

This commit is contained in:
2025-07-22 08:43:20 +07:00
commit 4247fc915d
6460 changed files with 146446 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef IPCONFIG_ERROR_H
#define IPCONFIG_ERROR_H
#include <string.h>
#include <stdio.h>
#include <errno.h>
#define printError(message) \
fprintf(stderr, "%s: %s\n", __func__, message)
#define printLibraryError(message) \
fprintf(stderr, "%s: %s: %s\n", __func__, message, strerror(errno))
#endif