blob: 143b422cd0b43fa2951acc0d9068fe5a342e922e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _COMMON_DL_H_
#define _COMMON_DL_H_
#include <dlfcn.h>
#include "err.h"
inline static void check_dlerror()
{
char *err = dlerror();
if (err)
error("library error: %s\n", err);
}
#endif
|