Created
August 13, 2024 22:08
-
-
Save lina-bh/4a162a5bddf2dd01c240a65705abe5b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "file.h" | |
| ssize_t add(ssize_t, ssize_t); // exported definition |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <sys/types.h> | |
| inline ssize_t add(ssize_t x, ssize_t y) { | |
| return x + y; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment