]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Avoid common symbols. Use __dead.
authorjoerg <joerg@NetBSD.org>
Thu, 12 Nov 2020 22:23:16 +0000 (22:23 +0000)
committerjoerg <joerg@NetBSD.org>
Thu, 12 Nov 2020 22:23:16 +0000 (22:23 +0000)
warp/intrp.c
warp/score.h
warp/sig.h
warp/util.c
warp/util.h

index 2b6df8250d3bc485f0ebe1c13471ee53e55affb3..e3f615b0af5f70da9f6926f0edbb7be7d8129429 100644 (file)
@@ -32,7 +32,7 @@ static char *getrealname(uid_t);
 static char *skipinterp(const char *, const char *);
 #endif
 
-static void abort_interp(void);
+__dead static void abort_interp(void);
 
 void
 intrp_init(char *tcbuf)
index c3810c049d2cd8e262c2827dbf8c92951d0f7771..a47521f071f358f645df8a54fe18e96f2a9ba9c9 100644 (file)
@@ -42,7 +42,7 @@ EXT char longlognam[128];
 EXT char c INIT(' ');
 
 void score_init(void);
-void wscore(void);
+__dead void wscore(void);
 void display_status(void);
 void wavescore(void);
 void score(void);
index 8f60329e6585336f7723911f1f7035166806e3c0..fe22220c078593326ff636d72ae1130c6fe277a8 100644 (file)
@@ -8,8 +8,8 @@
 
 void sig_init(void);
 void mytstp(void);
-void finalize(int status);
-void sig_catcher(int signo);
+__dead void finalize(int status);
+__dead void sig_catcher(int signo);
 #ifdef SIGTSTP
 void cont_catcher(int x);
 void stop_catcher(int sig);
index 76cc4dc770554fa122a59cc9a09973b93ba73657..2b5a638f7fd568c4efba1356b297720a4c0416df 100644 (file)
@@ -21,6 +21,8 @@
 #include "INTERN.h"
 #include "util.h"
 
+struct timespec timebuf;
+
 void
 util_init(void)
 {
index 444e08665d071c11f3c1cc89f1748345383b3d30..ba7dbe3d352a3d81e5000abde3a98faac7c44de3 100644 (file)
@@ -17,7 +17,7 @@
 
     /* we get fractions of seconds from calling ftime on timebuf */
 
-EXT struct timespec timebuf;
+extern struct timespec timebuf;
 #define roundsleep(x) (clock_gettime(CLOCK_REALTIME, &timebuf),sleep(timebuf.tv_nsec > 5000000000 ?x+1:x))
 
 #define waiting 0
@@ -37,7 +37,7 @@ EXT int len_last_line_got INIT(0);
 
 void util_init(void);
 void movc3(int, char *, char *);
-void no_can_do(const char *);
+__dead void no_can_do(const char *);
 int exdis(int);
 void *safemalloc(size_t size);
 char *safecpy(char *, const char *, size_t);
@@ -46,6 +46,6 @@ char *instr(const char *, const char *);
 #ifdef SETUIDGID
 int eaccess(const char *, mode_t);
 #endif
-void prexit(const char *);
+__dead void prexit(const char *);
 char *savestr(const char *);
 char *getval(const char *, const char *);