Deleted Added
full compact
yyerror.c (1574) yyerror.c (17141)
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

32 */
33
34#ifndef lint
35static char sccsid[] = "@(#)yyerror.c 8.1 (Berkeley) 6/4/93";
36#endif /* not lint */
37
38#include <stdio.h>
39
1/*-
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

32 */
33
34#ifndef lint
35static char sccsid[] = "@(#)yyerror.c 8.1 (Berkeley) 6/4/93";
36#endif /* not lint */
37
38#include <stdio.h>
39
40int
40yyerror(msg)
41char *msg;
42{
43 (void)fprintf(stderr, "%s\n", msg);
44 return(0);
45}
41yyerror(msg)
42char *msg;
43{
44 (void)fprintf(stderr, "%s\n", msg);
45 return(0);
46}