Mercurial > hg > early-roguelike
comparison xrogue/eat.c @ 220:f54901b9c39b
XRogue: convert to ANSI-style function declarations.
| author | John "Elwin" Edwards |
|---|---|
| date | Wed, 02 Mar 2016 21:13:26 -0500 |
| parents | e6179860cb76 |
| children | 7c1cb43f346e |
comparison
equal
deleted
inserted
replaced
| 219:f9ef86cf22b2 | 220:f54901b9c39b |
|---|---|
| 22 /* | 22 /* |
| 23 * eat: | 23 * eat: |
| 24 * He wants to eat something, so let him try | 24 * He wants to eat something, so let him try |
| 25 */ | 25 */ |
| 26 | 26 |
| 27 eat() | 27 void |
| 28 eat(void) | |
| 28 { | 29 { |
| 29 register struct linked_list *item; | 30 register struct linked_list *item; |
| 30 int which; | 31 int which; |
| 31 unsigned long temp; | 32 unsigned long temp; |
| 32 | 33 |
