diff --git a/docs/howto_guides/How-to-dump-core-file-on-MacOS.md b/docs/howto_guides/How-to-dump-core-file-on-MacOS.md index 82944322..e9c43654 100644 --- a/docs/howto_guides/How-to-dump-core-file-on-MacOS.md +++ b/docs/howto_guides/How-to-dump-core-file-on-MacOS.md @@ -40,6 +40,7 @@ This sets shell resources necessary for a core-dump. This setting is not persist ### segv.c + ```C int main() { int *p = (void*)0; @@ -49,6 +50,7 @@ int main() { ``` ### makefile + ```Makefile all: segv @@ -63,4 +65,4 @@ clean: rm segv rm segv.entitlements rm -rf segv.dSYM -``` \ No newline at end of file +```