ソースを参照

Add max(x, y) macro.

master
Richard Nyberg 18年前
コミット
d5700c2f20
1個のファイルの変更2行の追加0行の削除
  1. +2
    -0
      misc/subr.h

+ 2
- 0
misc/subr.h ファイルの表示

@@ -4,7 +4,9 @@
#include <stdio.h>
#include <stdarg.h>

#define max(x, y) ((x) >= (y) ? (x) : (y))
#define min(x, y) ((x) <= (y) ? (x) : (y))

#define SHAHEXSIZE 41

int set_nonblocking(int fd);


読み込み中…
キャンセル
保存