Changeset a000878c in mainline for uspace/app/tetris
- Timestamp:
- 2010-02-25T19:11:25Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 958de16
- Parents:
- a634485
- Location:
- uspace/app/tetris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tetris/screen.c
ra634485 ra000878c 72 72 * simply literal strings); 73 73 */ 74 static inline void putstr(c har *s)74 static inline void putstr(const char *s) 75 75 { 76 76 while (*s) … … 181 181 } 182 182 183 void stop(c har *why)183 void stop(const char *why) 184 184 { 185 185 if (isset) -
uspace/app/tetris/tetris.h
ra634485 ra000878c 186 186 extern int fits_in(const struct shape *, int); 187 187 extern void place(const struct shape *, int, int); 188 extern void stop(c har *);188 extern void stop(const char *); 189 189 190 190 /** @}
Note:
See TracChangeset
for help on using the changeset viewer.
