Skip to content

Commit

Permalink
Add missing copyright headers
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr committed Jun 13, 2013
1 parent fb9e986 commit 8b57005
Show file tree
Hide file tree
Showing 9 changed files with 54 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile.am
@@ -1,3 +1,8 @@
# Copyright 2012-2013 Luke Dashjr
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the standard MIT license. See COPYING for more details.

lib_LTLIBRARIES = \
libblkmaker_jansson-@LIBBLKMAKER_API_VERSION@.la \
libblkmaker-@LIBBLKMAKER_API_VERSION@.la
Expand Down
3 changes: 3 additions & 0 deletions autogen.sh
@@ -1,4 +1,7 @@
#!/bin/sh -e
# Written by Luke Dashjr in 2012
# This program is released under the terms of the Creative Commons "CC0 1.0 Universal" license and/or copyright waiver.

if test -z "$srcdir"; then
srcdir=`dirname "$0"`
if test -z "$srcdir"; then
Expand Down
7 changes: 7 additions & 0 deletions blkmaker.c
@@ -1,3 +1,10 @@
/*
* Copyright 2012 Luke Dashjr
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the standard MIT license. See COPYING for more details.
*/

#include <limits.h>
#include <stdbool.h>
#include <stdlib.h>
Expand Down
7 changes: 7 additions & 0 deletions blkmaker_jansson.c
@@ -1,3 +1,10 @@
/*
* Copyright 2012 Luke Dashjr
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the standard MIT license. See COPYING for more details.
*/

#define _BSD_SOURCE

#include <stdlib.h>
Expand Down
7 changes: 7 additions & 0 deletions blktemplate.c
@@ -1,3 +1,10 @@
/*
* Copyright 2012 Luke Dashjr
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the standard MIT license. See COPYING for more details.
*/

#define _BSD_SOURCE

#include <limits.h>
Expand Down
7 changes: 7 additions & 0 deletions blktemplate.h
@@ -1,3 +1,10 @@
/*
* Copyright 2012 Luke Dashjr
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the standard MIT license. See COPYING for more details.
*/

#ifndef BLKTEMPLATE_H
#define BLKTEMPLATE_H

Expand Down
5 changes: 5 additions & 0 deletions configure.ac
@@ -1,3 +1,8 @@
dnl * Copyright 2012-2013 Luke Dashjr
dnl *
dnl * This program is free software; you can redistribute it and/or modify it
dnl * under the terms of the standard MIT license. See COPYING for more details.

AC_INIT(
[libblkmaker],
[0.1],
Expand Down
7 changes: 7 additions & 0 deletions example.c
@@ -1,3 +1,10 @@
/*
* Copyright 2012 Luke Dashjr
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the standard MIT license. See COPYING for more details.
*/

#include <assert.h>
#include <inttypes.h>
#include <stdint.h>
Expand Down
6 changes: 6 additions & 0 deletions testinput.c
@@ -1,3 +1,9 @@
/*
* Written by Luke Dashjr in 2012
*
* This data is released under the terms of the Creative Commons "CC0 1.0 Universal" license and/or copyright waiver.
*/

const char *blkmaker_test_input =
"{"
"\"result\": {"
Expand Down

0 comments on commit 8b57005

Please sign in to comment.