mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
8 lines
170 B
C
8 lines
170 B
C
#ifndef A0_UNUSED_H
|
|
#define A0_UNUSED_H
|
|
|
|
#define A0_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
#define A0_MAYBE_UNUSED(X) ((void)(X))
|
|
|
|
#endif // A0_UNUSED_H
|