From 33c73c806087af15b56bd9c6625e8b15c314424c Mon Sep 17 00:00:00 2001
From: Eli Ribble <eli@theribbles.org>
Date: Fri, 9 Sep 2022 15:31:09 -0600
Subject: [PATCH] Use a proper file extension for C++

These don't exist on Linux, but they are a fun fiction.
---
 Makefile                   | 4 ++--
 capture.c => capture.cpp   | 0
 playback.c => playback.cpp | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename capture.c => capture.cpp (100%)
 rename playback.c => playback.cpp (100%)

diff --git a/Makefile b/Makefile
index 3993711..dc994e9 100644
--- a/Makefile
+++ b/Makefile
@@ -3,11 +3,11 @@ all: capture playback
 bin:
 	mkdir -p bin
 
-capture: bin capture.c
+capture: bin capture.cpp
 	g++ capture.c -o bin/capture
 
 clean:
 	rm -Rf bin
 
-playback: bin playback.c
+playback: bin playback.cpp
 	g++ playback.c -o bin/playback
diff --git a/capture.c b/capture.cpp
similarity index 100%
rename from capture.c
rename to capture.cpp
diff --git a/playback.c b/playback.cpp
similarity index 100%
rename from playback.c
rename to playback.cpp