Skip to content

Instantly share code, notes, and snippets.

@lina-bh
Created August 13, 2024 22:08
Show Gist options
  • Select an option

  • Save lina-bh/4a162a5bddf2dd01c240a65705abe5b2 to your computer and use it in GitHub Desktop.

Select an option

Save lina-bh/4a162a5bddf2dd01c240a65705abe5b2 to your computer and use it in GitHub Desktop.
#include "file.h"
ssize_t add(ssize_t, ssize_t); // exported definition
#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