Skip to content
This repository was archived by the owner on Nov 5, 2022. It is now read-only.

Commit 7057be5

Browse files
nekonomicona1batross
authored andcommitted
Update CONTRIBUTING.md.
1 parent 66038b2 commit 7057be5

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,14 @@ But if you want your patch to be accepted, we can give you few guidelines.
3333

3434
| OS | Macro |
3535
| -- | ----- |
36-
| Linux | `defined(__linux__)`|
37-
| *BSD | `defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)` |
36+
| Linux | `defined(__linux__)` |
37+
| FreeBSD | `defined(__FreeBSD__)` |
38+
| NetBSD | `defined(__NetBSD__)` |
39+
| OpenBSD | `defined(__OpenBSD__)` |
40+
| OS X/iOS | `defined(__APPLE__)` and TargetConditionals macros |
3841
| Windows | `defined(_WIN32)` |
3942
| Android | `defined(__ANDROID__)` |
43+
| Emscripten | `defined(__EMSCRIPTEN__)` |
4044

4145
### Licensing
4246

@@ -50,4 +54,4 @@ But if you want your patch to be accepted, we can give you few guidelines.
5054
* Use tabs, not spaces, for indentation.
5155
* Any brace must have it's own line.
5256
* Short blocks, if statements and loops on single line is allowed.
53-
* You can use clang-format here. Config is located in `.clang-format` file in repository's root .
57+
* You can use clang-format here. Config is located in `.clang-format` file in repository's root .

0 commit comments

Comments
 (0)