Skip to content

Commit

Permalink
Add license headers to new Go files
Browse files Browse the repository at this point in the history
  • Loading branch information
Merovius committed Dec 9, 2018
1 parent 1c4491d commit 3c087b9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
14 changes: 14 additions & 0 deletions internal/fb/ctypes.go
Expand Up @@ -2,6 +2,20 @@

// generate with: GOARCH=arm go tool cgo -godefs ctypes.go | gofmt > types_arm.go

// Copyright 2018 Axel Wagner
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package fb

/*
Expand Down
15 changes: 15 additions & 0 deletions internal/fb/fb.go
@@ -1,3 +1,18 @@
// Copyright 2018 Axel Wagner
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Package fb implements framebuffer interaction via ioctls and mmap.
package fb

import (
Expand Down

0 comments on commit 3c087b9

Please sign in to comment.