Changeset f538ef3 in mainline
- Timestamp:
- 2017-09-23T11:41:08Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75c3830
- Parents:
- bd1745f
- Location:
- uspace
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tetris/scores.c
rbd1745f rf538ef3 65 65 #include <vfs/vfs.h> 66 66 #include <stdlib.h> 67 #include <err.h>68 67 #include <time.h> 69 68 #include "screen.h" -
uspace/app/tetris/screen.c
rbd1745f rf538ef3 54 54 */ 55 55 56 #include <err.h>57 56 #include <stdio.h> 58 57 #include <stdlib.h> … … 198 197 scr_end(); 199 198 200 errx(1, "aborting: %s", why); 199 fprintf(stderr, "aborting: %s", why); 200 abort(); 201 201 } 202 202 -
uspace/app/tetris/tetris.c
rbd1745f rf538ef3 56 56 57 57 #include <sys/time.h> 58 #include <err.h>59 58 #include <errno.h> 60 59 #include <stdio.h> … … 289 288 for (i = 0; i <= 5; i++) { 290 289 for (j = i + 1; j <= 5; j++) { 291 if (keys[i] == keys[j]) 292 errx(1, "%s", "duplicate command keys specified."); 290 if (keys[i] == keys[j]) { 291 fprintf(stderr, "duplicate command keys specified."); 292 abort(); 293 } 293 294 } 294 295 -
uspace/lib/c/generic/getopt.c
rbd1745f rf538ef3 34 34 #include <assert.h> 35 35 #include <stdarg.h> 36 #include <stdio.h> 36 37 #include <stdlib.h> 37 38 #include <stddef.h> 38 #include <err.h>39 39 #include <errno.h> 40 40 #include <getopt.h>
Note:
See TracChangeset
for help on using the changeset viewer.