2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-26 11:48:27 +08:00

moninj: add min declaration

This commit is contained in:
Sebastien Bourdeauducq 2016-11-21 00:06:35 +08:00
parent ec645d3589
commit 0da2202179

View File

@ -12,6 +12,8 @@
#include "log.h" #include "log.h"
#include "moninj.h" #include "moninj.h"
#define min(a, b) (a>b?b:a)
enum { enum {
MONINJ_REQ_MONITOR = 1, MONINJ_REQ_MONITOR = 1,
MONINJ_REQ_TTLSET = 2 MONINJ_REQ_TTLSET = 2