Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering if, when working on source for your employer, people include a copyright notice.

For example

/*
 * Developer : Developer Name (developer.name@company.com)
 * Date : xx/yy/zzzz
 * All code (c)2008 company name inc. all rights reserved
 */

or anything similar?

share|improve this question
8  
FWIW, I think the "Developer" and "Date" fields in that header are superfluous. Unless, of course, everything in that file was written by one person on a single day, and nothing will ever change. – Kristopher Johnson Oct 14 '08 at 18:17
Fields like Developer and Name that change all the time can be automatically updated by version control software (Subversion, etc.) – Milan Babuškov Oct 14 '08 at 22:14
To clarify, I am in the UK but it is interesting to hear the situation in other territories – Greg B Oct 18 '08 at 16:43

closed as not constructive by casperOne Aug 29 '12 at 12:14

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

19 Answers

up vote 9 down vote accepted

That really depends on your employer's policy. I have yet to work in an environment where it was enforced to add copyright info into source code. I think the largest factor in that is that if another company gets your code, you are likely to have bigger problems than copyright infringement.

share|improve this answer

I do, now.

The company I work for had a client in the past who proceeded to reuse and distribute code that we held copyright on.

While in court, they used the excuse that 'they were told it was open source'. While they were made to pay some restitution, they got off fairly easy as the judge found it reasonable to believe they had acted in good faith, and were merely ignorant.

Ever since, we include copyright notices in our proprietary code in order to make the 'ignorance' excuse a little less reasonable.

share|improve this answer
7  
I didn't think ignorance was ever a defence for violating the law. – grom Oct 15 '08 at 2:32
3  
No, but a claim of it can mean the difference between a minimum sentence or fine, and what they would otherwise have gotten if convicted for willfully violating our copyright in an attempt to profit and damage our company's reputation. – BrianV Oct 15 '08 at 4:36
3  
Ignorance of the law itself is no defence, but in this case the client claimed that he was ignorant of the legal status of the code, which is a valid argument. – Lilienthal Aug 1 '12 at 9:39

A copyright notice isn't required to establish copyright, but it does make it clear to anyone looking at the code who the owner is. The date and developer fields aren't necessary, but you should spell out the word "Copyright", use the abbreviation "Copr.", or use the actual Unicode character © ("©" in HTML). The form "(C)" isn't a legally protected symbol according to US code. Having the notice on the work protects against claims of innocent infringement.

share|improve this answer
1  
Thanks, that's a very useful link. While we don't intend to hand our code out, having a simple statement added by eclipse and the other IDEs seems appropriate. – Peter Kahn Jan 15 '10 at 14:14
Very useful link - thanks. – Component 10 Dec 17 '10 at 8:55

Clearly, this is one for a lawyer. As I understand it, the notice is not legally mandatory in the US, in that in the US you have a copyright whether or not the notice is included, but the notice does affect certain legal rights should there ever be an infringement suit.

share|improve this answer

At my company, we have a predefined header we have to include in every source file we create, whatever the language (C#, Java, and C++ mainly). This includes the copyright info along with that "no reproducing" message you see on emails. I use a Visual Studio code template when I create classes to automatically include the header.

share|improve this answer

The better-organised companies have a copyright notice, pre-generated and added automatically to the header of every code module.

If your employer isn't sufficiently clued-up to ask you, don't bother asking them. It'll be seen as troublemaking, and you'll be blamed for something - anything! - and everything.

Yes, lawyers really do think that way.

Meanwhile, put a friendly notice into your code modules and classes to help more junior developers, who might not be aware that (say) code you copied off MSDN or an API published on the web (or some friendly blogger) is almost certainly encumbered with a GPL or CopyLeft License:

' Nigel Heffernan, [xxx dept, xxxyyy company, London] October 2009

' This code is adapted from material in the Public Domain ' (April 2009 Excellerando.Blogspot.com).

' It is unencumbered by copyrights and patents and we can use it freely, ' but we can only assert our own Intellectual Property rights on derived ' works: the original work remains free for public use.

' If you contribute distinctive features and original concepts, take care ' to segregate your source code and clearly mark it with our registered ' company name and a link to our copyright license warning.

There is, of course, the old standby:

If you were thinking of making an unathorised copy and using it outside the company, don't.

We have a dimly-lit bunker, deep underground, with row upon row of incubation tanks, each one holding an Intellectual Property Lawyer in a nutrient solution of neurotoxic venom and the even-numbered isotopes of plutonium that no-one wanted to use in their nuclear weapons. If you use this software without authorisation, we will decant them off, one a day, every day, and let them loose with an unlimited legal budget until you are nothing but a radioactive hole in the ground surrounded by safety warnings and foreclosure notices.

Also, the moment when they open their eyes and stare at you is CREEPY.

I believe there is a older version by Neil Gaiman (a fantasy author, not a coder) with something about bat-winged horrors of the outer darkness.

share|improve this answer

My team, until recently, had as one of our recommended guidelines that a copyright notice be included at the top of every source file. One of the lawyers in our company told us that putting that notice at the top wasn't necessary so now our guidelines suggest against putting any kind of notice at the top.

In addition we used to put info like author, date, and summary, but have chosen to not record those in source as 1) code owners often change, 2) the code often changes and the date isn't updated. Now if we want to find out who "owns" a piece of code we look into source control to see who has checked that file in recently.

share|improve this answer

Yes. Always, because posession is 9/10ths of the law. It's like putting a name tag in your coat: It doesn't mean it's not yours if you don't have a label or that it won't get taken, but you're in a much better position to take action if it does.

A few years ago I worked for a small company which got into a legal spat with the owner. The employees walked out and the owner sued because he assumed we'd stolen the code (we hadn't.) When it went to court, we were able to use the fact that we'd added copyright notices in the source code, as evidence that we completely understood the ownership of the intellectual property and therefore would not have taken it. We won.

share|improve this answer

I run a small software company, and we put statements like that in any code we distribute to clients. We also have clients sign a simple license agreement as part of the contract if it's not a 100% work for hire arrangement.

A statement like that is not legally necessary, especially if you have already filed for copyright, but a clear and ubiquitous statement in the code will cut down on the instances where clients/etc reuse/resell/etc software they aren't supposed to. Which is what you want at the end of the day.

share|improve this answer

Never. However, our code is never distributed to anyone, including clients. I'm not a lawyer though.

share|improve this answer

My employer requires a copyright notice in our code headers, similar to what you have at the top. We regularly reuse our code at customer sites and retain ownership of that code, and the copyright notice (while probably unnecessary) serves as a reminder to the customer developers that we own the code and they don't.

Should it be that way? I'm not sure. I'm just a developer. :)

share|improve this answer

Yes.

While the ignorance argument shouldn't hold up in court, it doesn't hurt to shut the door on it.

Simlarly, I always put a notice along the lines of "Authorised access only...." on the main page of admin control panels, just to shut down any arguments by someone that hacks in and then claims "It asked me what I wanted to do today" and "never said I shouldn't be here".

share|improve this answer

My company does not enforce that practice. We don't share any of the source outside of our organization, and copyright is implied in the US, so it's not necessary. We have other "safeguards" in place, like confidentiality agreements.

The only place I have worked that enforced that practice was a consulting firm that maintained ownership of code that was reused in a project.

share|improve this answer

Yes. Required by company web standards along with contact and policy links in interface. Do not put in code. Sometimes in assembly configuration depending on whether it might be distributed elsewhere. Typically, I don't release source code.

share|improve this answer

To add to the answers by WILL M and Ben Combee, they are both correct as long as your code is to never be distributed outside the USA. If it will be distributed outside the USA, then check with a copyright lawyer to see what is the other countries copyright laws require.

share|improve this answer

As Will M, Ben Combee, and WolfmanDragon stated, the copyright notice itself isn't required by U.S. law but it does unequivocably demonstrate to anyone looking at the code that it is actually copyrighted and also helps establish the date of the copyright. This can become important as it is the work with oldest provable copyright that will "win" in a dispute if two identical works are presented with different copyrights.

share|improve this answer

It would depend completely on how the code was to be distributed, and how you plan to release your code base.

For stuff which is freely accessible to the public e.g. JavaScript files, css even if they are obfuscated I would say that yes you need to have a notice there if you don’t want people to use it. Although that is not always going to work, even though the copyright is implicit it is easy for people to plead ignorance.

For code which you give to the client for hosting on their systems (compiled or not) we tend to give them a software licence agreement with the code and make them sign it instead of adding lines to each page, as i find every page having 10+lines for legal jargon at the top of my code page ruins its natural beauty! :P

share|improve this answer

This is not something required by our company, but it is something we do on the project I work on. We distribute all source code with each version, and every file gets a proprietary statement. We keep that proprietary statement in a single file and use the C preprocessor to insert it into every source file when a version is released. For example:

/* Foo.c */
#include "prop.include"

void foo();
...

Which results in something like:

/* Foo.c */
/* This source file is proprietary property of Innatrode, Inc. */

void foo();
...
share|improve this answer
2  
I might be missing something obvious, but... what's the point in using a compile directive to include basically a comment, at compile time? The compiler couldn't care less about it, and anyone reading the file will not see the "statement" along the file's source code. Seems like a real WTF to me. – Juan Pablo Califano Oct 14 '08 at 16:54
2  
We preprocess the code before it is shipped to include this statement. – Scottie T Oct 14 '08 at 18:00
Ahh, OK, sorry, now it makes more sense. – Juan Pablo Califano Oct 14 '08 at 18:34
4  
How do you make the preprocessor only execute the notice header include and not all the other includes? – grom Oct 15 '08 at 2:31

Yes. It is a manditory header for every file. We have a boiler plate for it

share|improve this answer

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