mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-05 03:47:17 -05:00
8 lines
120 B
C
8 lines
120 B
C
|
#include <stdio.h>
|
||
|
#include "version.h"
|
||
|
|
||
|
void version(void)
|
||
|
{
|
||
|
printf("%s version %s\n", PROGRAM_NAME_LONG, VERSION);
|
||
|
}
|