From c6983aebf0a1218e7b07542996877d8b19fbf641 Mon Sep 17 00:00:00 2001 From: Nishi Date: Wed, 21 Aug 2024 17:37:09 +0000 Subject: [PATCH] adding avatar c git-svn-id: file:///raid/svn-personal/repoview/trunk@28 7e8b2a19-8934-dd40-8cb3-db22cdd5a80f --- CGI/avatar.c | 3 +++ CGI/rv_avatar.h | 6 ++++++ CGI/version.c | 2 +- objs.c | 4 ++++ 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 CGI/avatar.c create mode 100644 CGI/rv_avatar.h diff --git a/CGI/avatar.c b/CGI/avatar.c new file mode 100644 index 0000000..3d61189 --- /dev/null +++ b/CGI/avatar.c @@ -0,0 +1,3 @@ +/* $Id$ */ + +#include "rv_avatar.h" diff --git a/CGI/rv_avatar.h b/CGI/rv_avatar.h new file mode 100644 index 0000000..1fda796 --- /dev/null +++ b/CGI/rv_avatar.h @@ -0,0 +1,6 @@ +/* $Id$ */ + +#ifndef __RV_AVATAR_H__ +#define __RV_AVATAR_H__ + +#endif diff --git a/CGI/version.c b/CGI/version.c index 08fae8c..f59e23b 100644 --- a/CGI/version.c +++ b/CGI/version.c @@ -2,6 +2,6 @@ #include "rv_version.h" -const char* rv_version = "1.00"; +const char* rv_version = "1.01"; const char* rv_get_version(void) { return rv_version; } diff --git a/objs.c b/objs.c index 197de1e..1897d26 100644 --- a/objs.c +++ b/objs.c @@ -19,6 +19,10 @@ int main() { printf(" "); #if defined(USE_ENSCRIPT) printf("enscript.o"); +#endif + printf(" "); +#if defined(USE_MYPAGE) + printf("avatar.o"); #endif printf("\n"); return 0; -- 2.45.2