summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-06-27 02:04:37 +0200
committerPeter Kokot <peterkokot@gmail.com>2018-06-27 02:04:37 +0200
commit01c59d840b1d126642267a12a8e1435915e1f730 (patch)
treee5ce6187a924089d680b4ae104221b5eaccd4e41 /examples
parent1e3a3d9819036870bcdc24389466145f691ccd53 (diff)
downloadlibgd-01c59d840b1d126642267a12a8e1435915e1f730.tar.gz
Remove Git ident attributes
Git ident attributes were in most cases utilized with SVN and keywords substitutions, where $Id$ were replaced with certain revision from the repository. In Git this functionality is different. Each $Id$ needs to be defined in .gitattributes file to be effective. This patch removes unused and outdated attributes.
Diffstat (limited to 'examples')
-rw-r--r--examples/arc.c1
-rw-r--r--examples/copyrotated.c1
-rw-r--r--examples/crop.c2
-rw-r--r--examples/flip.c1
-rw-r--r--examples/nnquant.c2
-rw-r--r--examples/tgaread.c1
-rw-r--r--examples/tiffread.c1
-rw-r--r--examples/windows.c1
8 files changed, 0 insertions, 10 deletions
diff --git a/examples/arc.c b/examples/arc.c
index ae3fcfd..8b57c14 100644
--- a/examples/arc.c
+++ b/examples/arc.c
@@ -1,4 +1,3 @@
-/* $Id$ */
#include "gd.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/examples/copyrotated.c b/examples/copyrotated.c
index 00a7003..9006c0c 100644
--- a/examples/copyrotated.c
+++ b/examples/copyrotated.c
@@ -1,4 +1,3 @@
-/* $Id$ */
#include "gd.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/examples/crop.c b/examples/crop.c
index 3e30b7f..569807c 100644
--- a/examples/crop.c
+++ b/examples/crop.c
@@ -1,5 +1,3 @@
-/* $Id$ */
-
#include "gd.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/examples/flip.c b/examples/flip.c
index 2399457..35f92cf 100644
--- a/examples/flip.c
+++ b/examples/flip.c
@@ -1,4 +1,3 @@
-/* $Id$ */
#include "gd.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/examples/nnquant.c b/examples/nnquant.c
index 91139b5..82e3672 100644
--- a/examples/nnquant.c
+++ b/examples/nnquant.c
@@ -1,5 +1,3 @@
-/* $Id$ */
-
#include "gd.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/examples/tgaread.c b/examples/tgaread.c
index 1fa9daf..859f4d4 100644
--- a/examples/tgaread.c
+++ b/examples/tgaread.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/*
* You can fetch a set of samples TIFF images here:
* ftp://ftp.remotesensing.org/pub/libtiff/
diff --git a/examples/tiffread.c b/examples/tiffread.c
index fe63ce0..f1d7836 100644
--- a/examples/tiffread.c
+++ b/examples/tiffread.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/*
* You can fetch a set of samples TIFF images here:
* ftp://ftp.remotesensing.org/pub/libtiff/
diff --git a/examples/windows.c b/examples/windows.c
index 5597638..d68d7a1 100644
--- a/examples/windows.c
+++ b/examples/windows.c
@@ -3,7 +3,6 @@ Sample usage of GD on windows. This little program opens a window, fetch its DIB
and assigns to a GD truecolor image.
Thanks to Mateusz Loskot (http://mateusz.loskot.net) for the AttachBuffer function!
-$Id$
*/
#include <windows.h>
#include <gd.h>