Update How-to-dump-core-file-on-MacOS.md

Add lines between title and header in an attempt to fix the weird rendering problem in which '>' gets injected .
This commit is contained in:
jmpenn 2022-08-22 15:43:32 -05:00 committed by GitHub
parent 79916fcd04
commit 4c1271b43b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```
```