├── .github ├── FUNDING.yml ├── laughing.gif └── workflows │ └── compile.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── dst └── .gitkeep ├── inc └── relocatable.c ├── makefile └── src └── main.c /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/.github/laughing.gif -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/README.md -------------------------------------------------------------------------------- /dst/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/dst/.gitkeep -------------------------------------------------------------------------------- /inc/relocatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/inc/relocatable.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/makefile -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tijme/relocatable/HEAD/src/main.c --------------------------------------------------------------------------------