writing api for scratch buffer

This commit is contained in:
2021-07-09 16:57:34 +02:00
committed by Robin Mueller
parent 8980a696c9
commit bef73d7357
7 changed files with 89 additions and 0 deletions

13
linux/utility/utility.h Normal file
View File

@ -0,0 +1,13 @@
#ifndef LINUX_UTILITY_UTILITY_H_
#define LINUX_UTILITY_UTILITY_H_
#include "fsfw/returnvalues/HasReturnvaluesIF.h"
#include <string>
namespace utility {
void handleSystemError(int retcode, std::string function);
}
#endif /* LINUX_UTILITY_UTILITY_H_ */