Skip to content

Commit 225a149

Browse files
committed
Unlicense
1 parent e77120b commit 225a149

27 files changed

+264
-392
lines changed

CONTRIBUTORS.txt

Whitespace-only changes.

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <http://unlicense.org>

LICENSE.txt

Lines changed: 0 additions & 176 deletions
This file was deleted.

Package.swift

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
// swift-tools-version:4.2
2-
/*
3-
* Copyright 2017 Tris Foundation and the project authors
4-
*
5-
* Licensed under the Apache License, Version 2.0 (the "License");
6-
* you may not use this file except in compliance with the License
7-
*
8-
* See LICENSE.txt in the project root for license information
9-
* See CONTRIBUTORS.txt for the list of the project authors
10-
*/
2+
/******************************************************************************
3+
* *
4+
* Tris Foundation disclaims copyright to this source code. *
5+
* In place of a legal notice, here is a blessing: *
6+
* *
7+
* May you do good and not evil. *
8+
* May you find forgiveness for yourself and forgive others. *
9+
* May you share freely, never taking more than you give. *
10+
* *
11+
******************************************************************************/
1112

1213
import PackageDescription
1314

Sources/CJavaScriptCore/include/include.h

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
/*
2-
* Copyright 2017 Tris Foundation and the project authors
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License
6-
*
7-
* See LICENSE.txt in the project root for license information
8-
* See CONTRIBUTORS.txt for the list of the project authors
9-
*/
1+
/******************************************************************************
2+
* *
3+
* Tris Foundation disclaims copyright to this source code. *
4+
* In place of a legal notice, here is a blessing: *
5+
* *
6+
* May you do good and not evil. *
7+
* May you find forgiveness for yourself and forgive others. *
8+
* May you share freely, never taking more than you give. *
9+
* *
10+
******************************************************************************/
1011

1112
#ifndef __JAVASCRIPTCORE_H__
1213
#define __JAVASCRIPTCORE_H__

Sources/CJavaScriptCore/include/module.modulemap

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
/*
2-
* Copyright 2017 Tris Foundation and the project authors
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License
6-
*
7-
* See LICENSE.txt in the project root for license information
8-
* See CONTRIBUTORS.txt for the list of the project authors
9-
*/
1+
/******************************************************************************
2+
* *
3+
* Tris Foundation disclaims copyright to this source code. *
4+
* In place of a legal notice, here is a blessing: *
5+
* *
6+
* May you do good and not evil. *
7+
* May you find forgiveness for yourself and forgive others. *
8+
* May you share freely, never taking more than you give. *
9+
* *
10+
******************************************************************************/
1011

1112
module CJavaScriptCore [system] {
1213
header "include.h"

Sources/CV8/c_v8.cpp

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
/*
2-
* Copyright 2017 Tris Foundation and the project authors
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License
6-
*
7-
* See LICENSE.txt in the project root for license information
8-
* See CONTRIBUTORS.txt for the list of the project authors
9-
*/
1+
/******************************************************************************
2+
* *
3+
* Tris Foundation disclaims copyright to this source code. *
4+
* In place of a legal notice, here is a blessing: *
5+
* *
6+
* May you do good and not evil. *
7+
* May you find forgiveness for yourself and forgive others. *
8+
* May you share freely, never taking more than you give. *
9+
* *
10+
******************************************************************************/
1011

1112
#include <stdlib.h> // malloc, free
1213
#include <string.h> // memset, memcpy

Sources/CV8/include/c_v8.h

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
/*
2-
* Copyright 2017 Tris Foundation and the project authors
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License
6-
*
7-
* See LICENSE.txt in the project root for license information
8-
* See CONTRIBUTORS.txt for the list of the project authors
9-
*/
1+
/******************************************************************************
2+
* *
3+
* Tris Foundation disclaims copyright to this source code. *
4+
* In place of a legal notice, here is a blessing: *
5+
* *
6+
* May you do good and not evil. *
7+
* May you find forgiveness for yourself and forgive others. *
8+
* May you share freely, never taking more than you give. *
9+
* *
10+
******************************************************************************/
1011

1112
#ifndef c_v8_h
1213
#define c_v8_h

Sources/CV8/include/module.modulemap

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
/*
2-
* Copyright 2017 Tris Foundation and the project authors
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License
6-
*
7-
* See LICENSE.txt in the project root for license information
8-
* See CONTRIBUTORS.txt for the list of the project authors
9-
*/
1+
/******************************************************************************
2+
* *
3+
* Tris Foundation disclaims copyright to this source code. *
4+
* In place of a legal notice, here is a blessing: *
5+
* *
6+
* May you do good and not evil. *
7+
* May you find forgiveness for yourself and forgive others. *
8+
* May you share freely, never taking more than you give. *
9+
* *
10+
******************************************************************************/
1011

1112
module CV8 [system] {
1213
header "c_v8.h"

Sources/CV8Platform/c_v8_platform.cpp

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
/*
2-
* Copyright 2017 Tris Foundation and the project authors
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License
6-
*
7-
* See LICENSE.txt in the project root for license information
8-
* See CONTRIBUTORS.txt for the list of the project authors
9-
*/
1+
/******************************************************************************
2+
* *
3+
* Tris Foundation disclaims copyright to this source code. *
4+
* In place of a legal notice, here is a blessing: *
5+
* *
6+
* May you do good and not evil. *
7+
* May you find forgiveness for yourself and forgive others. *
8+
* May you share freely, never taking more than you give. *
9+
* *
10+
******************************************************************************/
1011

1112
#include <stdlib.h> // malloc, free
1213
#include <string.h> // memset, memcpy

0 commit comments

Comments
 (0)