18 lines
141 B
Plaintext
18 lines
141 B
Plaintext
// prototype
|
|
@@
|
|
identifier fn;
|
|
type t;
|
|
@@
|
|
- t fn();
|
|
+ t fn(void);
|
|
|
|
// implementation
|
|
@@
|
|
identifier fn;
|
|
type t;
|
|
@@
|
|
- fn()
|
|
+ fn(void)
|
|
{ ... }
|
|
|