Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
aa722914
Commit
aa722914
authored
Sep 12, 2008
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document license requirements.
parent
023f704e
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
24 additions
and
0 deletions
+24
-0
ccan/alignof/_info.c
ccan/alignof/_info.c
+2
-0
ccan/alloc/_info.c
ccan/alloc/_info.c
+2
-0
ccan/antithread/_info.c
ccan/antithread/_info.c
+2
-0
ccan/build_assert/_info.c
ccan/build_assert/_info.c
+2
-0
ccan/check_type/_info.c
ccan/check_type/_info.c
+2
-0
ccan/container_of/_info.c
ccan/container_of/_info.c
+2
-0
ccan/hash/_info.c
ccan/hash/_info.c
+2
-0
ccan/list/_info.c
ccan/list/_info.c
+2
-0
ccan/noerr/_info.c
ccan/noerr/_info.c
+2
-0
ccan/string/_info.c
ccan/string/_info.c
+2
-0
ccan/talloc/_info.c
ccan/talloc/_info.c
+2
-0
ccan/typesafe_cb/_info.c
ccan/typesafe_cb/_info.c
+2
-0
No files found.
ccan/alignof/_info.c
View file @
aa722914
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
* exit(0);
* exit(0);
* }
* }
* }
* }
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/alloc/_info.c
View file @
aa722914
...
@@ -88,6 +88,8 @@
...
@@ -88,6 +88,8 @@
* }
* }
* return 0;
* return 0;
* }
* }
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/antithread/_info.c
View file @
aa722914
...
@@ -6,6 +6,8 @@
...
@@ -6,6 +6,8 @@
* antithread - Accelerated Native Technology Implementation of "threads"
* antithread - Accelerated Native Technology Implementation of "threads"
*
*
* Threads suck. Antithreads try not to. FIXME.
* Threads suck. Antithreads try not to. FIXME.
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/build_assert/_info.c
View file @
aa722914
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
* BUILD_ASSERT(offsetof(struct foo, string) == 0);
* BUILD_ASSERT(offsetof(struct foo, string) == 0);
* return (char *)foo;
* return (char *)foo;
* }
* }
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/check_type/_info.c
View file @
aa722914
...
@@ -13,6 +13,8 @@
...
@@ -13,6 +13,8 @@
* On compilers which don't support typeof() these routines are less effective,
* On compilers which don't support typeof() these routines are less effective,
* since they have to use sizeof() which can only distiguish between types of
* since they have to use sizeof() which can only distiguish between types of
* different size.
* different size.
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/container_of/_info.c
View file @
aa722914
...
@@ -32,6 +32,8 @@
...
@@ -32,6 +32,8 @@
*
*
* register_timer(&info.timer);
* register_timer(&info.timer);
* ...
* ...
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/hash/_info.c
View file @
aa722914
...
@@ -11,6 +11,8 @@
...
@@ -11,6 +11,8 @@
* may change if we find better or faster hash algorithms in future.
* may change if we find better or faster hash algorithms in future.
* The stable ones will always give the same results on any computer,
* The stable ones will always give the same results on any computer,
* and on any version of this package.
* and on any version of this package.
*
* Licence: Public Domain
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/list/_info.c
View file @
aa722914
...
@@ -48,6 +48,8 @@
...
@@ -48,6 +48,8 @@
* printf("\n");
* printf("\n");
* return 0;
* return 0;
* }
* }
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/noerr/_info.c
View file @
aa722914
...
@@ -40,6 +40,8 @@
...
@@ -40,6 +40,8 @@
* }
* }
* return true;
* return true;
* }
* }
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/string/_info.c
View file @
aa722914
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
* printf("Magic option set\n");
* printf("Magic option set\n");
* return 0;
* return 0;
* }
* }
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/talloc/_info.c
View file @
aa722914
...
@@ -88,6 +88,8 @@
...
@@ -88,6 +88,8 @@
* talloc_free(cmd);
* talloc_free(cmd);
* return 0;
* return 0;
* }
* }
*
* Licence: GPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
ccan/typesafe_cb/_info.c
View file @
aa722914
...
@@ -45,6 +45,8 @@
...
@@ -45,6 +45,8 @@
* On compilers which don't support the extensions required
* On compilers which don't support the extensions required
* cast_if_type() and friend become an unconditional cast, so your
* cast_if_type() and friend become an unconditional cast, so your
* code will compile but you won't get type checking.
* code will compile but you won't get type checking.
*
* Licence: LGPL (2 or any later version)
*/
*/
int
main
(
int
argc
,
char
*
argv
[])
int
main
(
int
argc
,
char
*
argv
[])
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment