소스 검색

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);


불러오는 중...
취소
저장