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
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

I'm not sure if I understand your problem fully, however, as long as the code of the header file is yours, you can license it this way and the other time that way. As it's your code, you can license it under any license you want to, which includes multiple licenses in different projects.

If you are the sole author, you're in control, unless you have given away that right.

link|improve this answer
Thanks. I have updated my question for clarity . The problem is that I am using the header in the same time, as I mentioned now in question. – Lunar Mushrooms Dec 18 '11 at 11:37
feedback

Put the GPL in the header. Make it clear that you own the copyright and may license it under other licenses.

Since only the copyright owner has the right to make you comply with the GPL you just have to promise to not sue yourself for using your GPLed code in a proprietary app and not distributing the source.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.