4.4BSD/usr/src/contrib/emacs-18.57/shortnames/defines.c

Compare this file to the similar file:
Show the results in this format:

#include <stdio.h>

int count;

main ()
{
    char buffer[512];

    while (gets (buffer))
      {
	printf ("#define %s zz%4.4dzz\n", buffer, count++);
      }
    return (0);
}