diff options
author | Skiz <skiznet@aol.com> | 2024-10-02 16:44:15 -0400 |
---|---|---|
committer | Skiz <skiznet@aol.com> | 2024-10-02 16:44:15 -0400 |
commit | a62e735baf4e9c9eb23f56edfce90743ab91d4fe (patch) | |
tree | ae7255a8939b008fe309177ad02beeeeb1f1f149 | |
parent | 84b8fd06d029882afaf66592ce102269560a7588 (diff) |
Removed extra text
-rw-r--r-- | spwd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,8 +8,8 @@ int main(void) { // Get the current working dir and saves it to "buffer". getcwd(buffer, sizeof(buffer)); - printf("Current working dir: \n\n%s\n", buffer); - + // Prints current working dir to command line. + printf("%s\n", buffer); return 0; } |