This website requires JavaScript.
Explore
Help
Register
Sign In
db
/
pgbackrest
Watch
1
Star
0
Fork
0
You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced
2024-12-12 10:04:14 +02:00
Code
Issues
Releases
Activity
d51a86c621
pgbackrest
/
.gitattributes
4 lines
87 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add .inc extension to C files included in other C files. These files were never intended to be compiled on their own so the .c extension was a bit misleading. In particular Meson does not like .c files that are not intended to be compiled independently. Leave header files as is since they are already protected against being included more than once and are never expected to be compiled.
2022-05-31 22:06:41 +02:00
# Classify all .h/c.inc files as C
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++.
2020-04-15 00:03:41 +02:00
*.h linguist-language=C
Add .inc extension to C files included in other C files. These files were never intended to be compiled on their own so the .c extension was a bit misleading. In particular Meson does not like .c files that are not intended to be compiled independently. Leave header files as is since they are already protected against being included more than once and are never expected to be compiled.
2022-05-31 22:06:41 +02:00
*.c.inc linguist-language=C
Reference in New Issue
Copy Permalink