From 492180837ee654bb5052bbaca3d04111ee89a4c6 Mon Sep 17 00:00:00 2001 From: David Steele Date: Tue, 14 Apr 2020 18:03:41 -0400 Subject: [PATCH] Classify all .h files as C. Github classifies many C header files as C++, perhaps because they don't contain anything definitively C-like. Add an override to ensure .h files are always classified as C since this project contains no C++. --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..f51ff42fa --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Classify all .h files as C +*.h linguist-language=C