修改签发证书获取时间方式

This commit is contained in:
fengweihao
2019-08-07 15:49:38 +08:00
parent 5e684f980b
commit 8d2857c813
2 changed files with 62 additions and 24 deletions

View File

@@ -33,6 +33,10 @@
#define FOREVER for(;;)
#endif
#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif
typedef struct atomic {
volatile int counter;
} atomic_t;