I have a small C header file (i wrote it) which contains only some #define values. I want to #include this header file both in a proprietary application and a GPL application.
I don't mind the header file goes public along with the GPL app. But I can't provide sources of proprietary application to public.
What license should I use for my header file? For example
//
// gplapp.c
#include "/home/project/myheader.h"
int main () {......}
and
//
// proprietaryapp.c
#include "/home/project/myheader.h"
int main () {......}
-
Makefile: build both gplapp.c and proprietaryapp.c