summaryrefslogtreecommitdiff
path: root/lib-src/update-game-score.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-07-07 22:48:57 -0700
committerDan Nicolaescu <dann@ics.uci.edu>2010-07-07 22:48:57 -0700
commit0216627eb39f77958e30f4750f581714fdfd7faf (patch)
tree3386df5cfea9d2ce20f2dbb6152b24a2c0ea5bfd /lib-src/update-game-score.c
parentd8825aa36e51836d75112ebddc93beca9f31185a (diff)
downloademacs-0216627eb39f77958e30f4750f581714fdfd7faf.tar.gz
Remove leftover P_ macros.
* lib-src/update-game-score.c (P_): Remove macro. * lib-src/ebrowse.c: Remove include guards. (P_): Remove macro.
Diffstat (limited to 'lib-src/update-game-score.c')
-rw-r--r--lib-src/update-game-score.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib-src/update-game-score.c b/lib-src/update-game-score.c
index ba619450198..a96422a09a9 100644
--- a/lib-src/update-game-score.c
+++ b/lib-src/update-game-score.c
@@ -64,13 +64,6 @@ extern int optind, opterr;
#define MAX_SCORES 200
#define MAX_DATA_LEN 1024
-/* Declare the prototype for a general external function. */
-#if defined (PROTOTYPES) || defined (WINDOWSNT)
-#define P_(proto) proto
-#else
-#define P_(proto) ()
-#endif
-
#ifndef HAVE_DIFFTIME
/* OK on POSIX (time_t is arithmetic type) modulo overflow in subtraction. */
#define difftime(t1, t0) (double)((t1) - (t0))