Postfix3.3.1
マクロ定義 | 関数
fifo_open.c ファイル
#include <sys/stat.h>
#include <stdio.h>
#include <fcntl.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>

[ソースコード]

マクロ定義

#define FIFO_PATH   "test-fifo"
 
#define perrorexit(s)   { perror(s); exit(1); }
 

関数

int main (int unused_argc, char **unused_argv)
 

マクロ定義詳解

#define FIFO_PATH   "test-fifo"

fifo_open.c32 行目に定義があります。

#define perrorexit (   s)    { perror(s); exit(1); }

fifo_open.c33 行目に定義があります。

関数詳解

int main ( int  unused_argc,
char **  unused_argv 
)

fifo_open.c50 行目に定義があります。