From bb44088ca96e320475d4ebd11f8868ac4b452fbb Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Wed, 14 Mar 2012 15:07:04 -0700 Subject: [PATCH] model: move model.c --> model.cc --- Makefile | 2 +- model.c => model.cc | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename model.c => model.cc (100%) diff --git a/Makefile b/Makefile index 2196e902..6c52f671 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC=g++ BIN=libthreads -SOURCE=libthreads.c schedule.c libatomic.c userprog.c model.c +SOURCE=libthreads.c schedule.c libatomic.c userprog.c model.cc HEADERS=libthreads.h schedule.h common.h libatomic.h model.h FLAGS=-Wall diff --git a/model.c b/model.cc similarity index 100% rename from model.c rename to model.cc -- 2.34.1