Mercurial > hg > early-roguelike
comparison srogue/rip.c @ 60:3aa87373c908
srogue: include missing headers.
| author | elwin |
|---|---|
| date | Fri, 27 Jan 2012 17:29:30 +0000 |
| parents | bb9f7d01e09c |
| children | 15f8229f38c1 |
comparison
equal
deleted
inserted
replaced
| 59:bb9f7d01e09c | 60:3aa87373c908 |
|---|---|
| 14 * See the file LICENSE.TXT for full copyright and licensing information. | 14 * See the file LICENSE.TXT for full copyright and licensing information. |
| 15 */ | 15 */ |
| 16 | 16 |
| 17 #include <signal.h> | 17 #include <signal.h> |
| 18 #include <ctype.h> | 18 #include <ctype.h> |
| 19 #include <string.h> | |
| 19 #include <sys/types.h> | 20 #include <sys/types.h> |
| 20 #include <pwd.h> | 21 #include <pwd.h> |
| 21 #include <fcntl.h> | 22 #include <fcntl.h> |
| 22 #include "rogue.h" | 23 #include "rogue.h" |
| 23 #include "rogue.ext" | 24 #include "rogue.ext" |
| 49 }; | 50 }; |
| 50 | 51 |
| 51 #define RIP_LINES (sizeof rip / (sizeof (char *))) | 52 #define RIP_LINES (sizeof rip / (sizeof (char *))) |
| 52 | 53 |
| 53 char *killname(); | 54 char *killname(); |
| 55 void writelog(int amount, int aflag, char monst); | |
| 54 | 56 |
| 55 /* | 57 /* |
| 56 * death: | 58 * death: |
| 57 * Do something really fun when he dies | 59 * Do something really fun when he dies |
| 58 */ | 60 */ |
