Deleted Added
sdiff udiff text old ( 15648 ) new ( 15703 )
full compact
1/*
2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 328 unchanged lines hidden (view full) ---

337#if __STDC__
338frecverr(const char *msg, ...)
339#else
340frecverr(msg, va_alist)
341 char *msg;
342 va_dcl
343#endif
344{
345 va_list ap;
346#if __STDC__
347 va_start(ap, msg);
348#else
349 va_start(ap);
350#endif
351 rcleanup(0);
352 syslog(LOG_ERR, "%s", fromb);
353 vsyslog(LOG_ERR, msg, ap);
354 va_end(ap);
355 putchar('\1'); /* return error code */
356 exit(1);
357}