Skip to content

Commit f6e8e77

Browse files
committed
Update copyright notice.
I don't like big license headers. Two lines feel too long, why don't we make them one line? We may be able to remove "Copyright <year>" from files because copyright is automatically established when you create it because of the Berne Agreement. But I am not a laywer. I'll leave them alone.
1 parent 6abcf1f commit f6e8e77

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+94
-143
lines changed

8cc.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2012 Rui Ueyama. Released under the MIT license.
32

43
#ifndef EIGHTCC_H
54
#define EIGHTCC_H

buffer.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2012 Rui Ueyama. Released under the MIT license.
32

43
#include <ctype.h>
54
#include <stdarg.h>

cpp.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2012 Rui Ueyama. Released under the MIT license.
32

43
/*
54
* This implements Dave Prosser's C Preprocessing algorithm, described

debug.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2012 Rui Ueyama. Released under the MIT license.
32

43
#include "8cc.h"
54

dict.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2012 Rui Ueyama. Released under the MIT license.
32

43
#include <stdlib.h>
54
#include "8cc.h"

encoding.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2015 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2015 Rui Ueyama. Released under the MIT license.
32

43
// This file defines functions to convert UTF-8 strings to UTF-16 or UTF-32.
54
//

error.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2012 Rui Ueyama. Released under the MIT license.
32

43
#include <stdarg.h>
54
#include <stdlib.h>

file.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2014 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2014 Rui Ueyama. Released under the MIT license.
32

43
/*
54
* This file provides character input stream for C source code.

gen.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2012 Rui Ueyama <[email protected]>
2-
// This program is free software licensed under the MIT license.
1+
// Copyright 2012 Rui Ueyama. Released under the MIT license.
32

43
#include <stdarg.h>
54
#include <stdlib.h>

include/8cc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// Copyright 2014 Rui Ueyama. Released under the MIT license.
2+
13
#define _LP64 1
24
#define __8cc__ 1
35
#define __ELF__ 1

0 commit comments

Comments
 (0)