ログイン
編集不可のページディスカッション情報添付ファイル

検索条件 "linkto:"clear/note/2013-06"" に対して、結果は0件でした。条件を変更するか、 HelpOnSearching を参照してください。
(!) 次のことを検討してください 同じ検索語で全文検索を行う.

メッセージを消す
clear/note/2013-06

MMA

2013年6月

06/04

06/06

06/08

06/10

誤ってパーティションテーブルを吹き飛ばした

諦めるのはまだ早い。

06/15

FreeBSDでネットワークトラフィックを監視する

systatコマンドを使う。

systat -ifstat 1

06/18

typedef redefinition

typedefの再定義はC11より前ではできないらしい。C++だとできる。

> cat typedef.c
typedef int A;
typedef int A;
int main(void) {}
> clang typedef.c
typedef.c:2:13: warning: redefinition of typedef 'A' is a C11 feature [-Wtypedef-redefinition]
typedef int A;
            ^
typedef.c:1:13: note: previous definition is here
typedef int A;
            ^