aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/update-game-score.c
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-07 22:48:57 -0700
committerDan Nicolaescu2010-07-07 22:48:57 -0700
commit0216627eb39f77958e30f4750f581714fdfd7faf (patch)
tree3386df5cfea9d2ce20f2dbb6152b24a2c0ea5bfd /lib-src/update-game-score.c
parentd8825aa36e51836d75112ebddc93beca9f31185a (diff)
downloademacs-0216627eb39f77958e30f4750f581714fdfd7faf.tar.gz
emacs-0216627eb39f77958e30f4750f581714fdfd7faf.zip
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;
64#define MAX_SCORES 200 64#define MAX_SCORES 200
65#define MAX_DATA_LEN 1024 65#define MAX_DATA_LEN 1024
66 66
67/* Declare the prototype for a general external function. */
68#if defined (PROTOTYPES) || defined (WINDOWSNT)
69#define P_(proto) proto
70#else
71#define P_(proto) ()
72#endif
73
74#ifndef HAVE_DIFFTIME 67#ifndef HAVE_DIFFTIME
75/* OK on POSIX (time_t is arithmetic type) modulo overflow in subtraction. */ 68/* OK on POSIX (time_t is arithmetic type) modulo overflow in subtraction. */
76#define difftime(t1, t0) (double)((t1) - (t0)) 69#define difftime(t1, t0) (double)((t1) - (t0))