揮発性のメモ2

http://d.hatena.ne.jp/iww/

__TIMESTAMP__

int main()
{
    printf(__TIMESTAMP__ "\n");
    printf(__DATE__ "\n");
    printf(__TIME__ "\n");
    return 0;
}

表示サンプル

$ ./a.out
Wed Sep 19 17:09:54 2010
Sep 19 2010
17:14:56

__TIMESTAMP__は ファイルのタイムスタンプ
__DATE____TIME__は ファイルをコンパイルしたときの日時