comparison lib-src/emacsserver.c @ 24382:740c8322ca39

(perror_1, fatal_error): Don't compile unless needed.
author Karl Heuer <kwzh@gnu.org>
date Mon, 22 Feb 1999 20:51:02 +0000
parents 33b162fe4507
children 89be69860eeb
comparison
equal deleted inserted replaced
24381:b3c0f3ad64d8 24382:740c8322ca39
567 } 567 }
568 } 568 }
569 569
570 #endif /* HAVE_SYSVIPC */ 570 #endif /* HAVE_SYSVIPC */
571 571
572 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */
573 572
574 /* This is like perror but puts `Error: ' at the beginning. */ 573 /* This is like perror but puts `Error: ' at the beginning. */
575 574
576 void 575 void
577 perror_1 (string) 576 perror_1 (string)
592 { 591 {
593 fprintf (stderr, "%s", "Error: "); 592 fprintf (stderr, "%s", "Error: ");
594 fprintf (stderr, string); 593 fprintf (stderr, string);
595 exit (1); 594 exit (1);
596 } 595 }
596 #endif /* HAVE_SOCKETS or HAVE_SYSVIPC */