fix slashes

This commit is contained in:
Tyrel Souza 2023-01-17 21:23:39 -05:00
parent ba55ca7ebf
commit f8698a653b
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
tags.*
tags
cache/
.DS_Store

View File

@ -9,9 +9,9 @@ This weekend I purchased a book from this seller on Craigslist - `"Advanced MS-D
I found a copy of `TurboC2 on Archive.org <https://archive.org/details/msdos_borland_turbo_c_2.01>`_ and tossed that into my DOS Box install. I wrote a "Hello world" and pressed compile and it couldn't include "stdio.h", what the heck?
It seems that the Archive.org copy of Turbo C 2 ships with configuration that sets where the Includes and Lib directories to ``C:\\TC\\``. I keep all my programs in ``C:\\PROGS\\`` so of course it can't find any header files for me!
It seems that the Archive.org copy of Turbo C 2 ships with configuration that sets where the Includes and Lib directories to ``C:\TC``. I keep all my programs in ``C:\PROGS`` so of course it can't find any header files for me!
To fix this you can either move your TurboC install to ``C:\\TC\\``, which feels wrong to me, or you could configure it in the options properly.
To fix this you can either move your TurboC install to ``C:\TC``, which feels wrong to me, or you could configure it in the options properly.