1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 18:41:25 -08:00

Remove leftover P_ macros.

* lib-src/update-game-score.c (P_): Remove macro.
* lib-src/ebrowse.c: Remove include guards.
(P_): Remove macro.
This commit is contained in:
Dan Nicolaescu 2010-07-07 22:48:57 -07:00
parent d8825aa36e
commit 0216627eb3
3 changed files with 6 additions and 19 deletions

View file

@ -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))