I have a number of function in my \"C\" code. When I compile .so, I see all names in result .so file. How can I specify (in code or in make file) that only some functions should
In C, if you want a function to remain internal to the file (technically, the "compilation unit") that contains it, you declare it "static". For example,