diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/XDither.c | 4 | ||||
-rw-r--r-- | src/lib/XShade.c | 4 | ||||
-rw-r--r-- | src/lib/XSpadFill.c | 6 | ||||
-rw-r--r-- | src/lib/cursor.c | 4 | ||||
-rw-r--r-- | src/lib/edin.c | 12 | ||||
-rw-r--r-- | src/lib/fnct_key.c | 6 | ||||
-rw-r--r-- | src/lib/openpty.c | 2 | ||||
-rw-r--r-- | src/lib/prt.c | 4 | ||||
-rw-r--r-- | src/lib/wct.c | 6 |
9 files changed, 25 insertions, 23 deletions
diff --git a/src/lib/XDither.c b/src/lib/XDither.c index e3c15df0..d766633d 100644 --- a/src/lib/XDither.c +++ b/src/lib/XDither.c @@ -1,7 +1,7 @@ /* Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. All rights reserved. - Copyright (C) Gabriel Dos Reis. + Copyright (C) 2007-2010, Gabriel Dos Reis. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -60,7 +60,7 @@ char XDitherBits[] = { 0x05, 0x07, 0x07, 0x07, 0x07, 0x07 }; -#include "XDither.H1" +#include "XDither.h" Pixmap XDither[XDitherMax]; unsigned int DITHERINIT = 0; diff --git a/src/lib/XShade.c b/src/lib/XShade.c index 4cc052c5..590f2d2f 100644 --- a/src/lib/XShade.c +++ b/src/lib/XShade.c @@ -1,7 +1,7 @@ /* Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. All rights reserved. - Copyright (C) Gabriel Dos Reis. + Copyright (C) 2007-2010, Gabriel Dos Reis. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -67,7 +67,7 @@ char XShadeBits[] = { 0x0f, 0x0f, 0x0f, 0x0e, 0x0f, 0x0f, 0x0f, 0x0f}; -#include "XShade.H1" +#include "XShade.h" Pixmap XShade[XShadeMax]; GC TileGC; diff --git a/src/lib/XSpadFill.c b/src/lib/XSpadFill.c index 6a332dba..fe805ff2 100644 --- a/src/lib/XSpadFill.c +++ b/src/lib/XSpadFill.c @@ -60,9 +60,9 @@ #include "openaxiom-c-macros.h" #include "spadcolors.h" -#include "XSpadFill.H1" -#include "XShade.H1" -#include "XDither.H1" +#include "XSpadFill.h" +#include "XShade.h" +#include "XDither.h" extern unsigned long *spadColors; static GC stippleGC, solidGC; diff --git a/src/lib/cursor.c b/src/lib/cursor.c index c63f738d..5413151d 100644 --- a/src/lib/cursor.c +++ b/src/lib/cursor.c @@ -1,6 +1,8 @@ /* Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. All rights reserved. + Copyright (C) 2007-2010, Gabriel Dos Reis. + All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -34,7 +36,7 @@ #include <stdlib.h> #include "openaxiom-c-macros.h" -#include "cursor.H1" +#include "cursor.h" /* * This routine changes the shape of the cursor. it is a modified version of diff --git a/src/lib/edin.c b/src/lib/edin.c index ae4a3c0d..508c701a 100644 --- a/src/lib/edin.c +++ b/src/lib/edin.c @@ -1,7 +1,7 @@ /* Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. All rights reserved. - Copyright (C) Gabriel Dos Reis. + Copyright (C) 2007-2010, Gabriel Dos Reis. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -67,11 +67,11 @@ extern int buff_flag[1024]; /* flags for whether buff chars int buff_pntr; /* present length of buff */ -#include "edin.H1" -#include "prt.H1" -#include "wct.H1" -#include "cursor.H1" -#include "fnct_key.H1" +#include "edin.h" +#include "prt.h" +#include "wct.h" +#include "cursor.h" +#include "fnct_key.h" diff --git a/src/lib/fnct_key.c b/src/lib/fnct_key.c index d880a133..3c36df2a 100644 --- a/src/lib/fnct_key.c +++ b/src/lib/fnct_key.c @@ -48,9 +48,9 @@ #include "bsdsignal.h" -#include "fnct_key.H1" -#include "prt.H1" -#include "edin.H1" +#include "fnct_key.h" +#include "prt.h" +#include "edin.h" /** Some constants for functio key defs ****/ diff --git a/src/lib/openpty.c b/src/lib/openpty.c index 2c410479..f737802a 100644 --- a/src/lib/openpty.c +++ b/src/lib/openpty.c @@ -58,7 +58,7 @@ #endif -#include "openpty.H1" +#include "openpty.h" static void makeNextPtyNames(char * , char * ); diff --git a/src/lib/prt.c b/src/lib/prt.c index a044d3d1..f111e2d9 100644 --- a/src/lib/prt.c +++ b/src/lib/prt.c @@ -37,8 +37,8 @@ #include <sys/types.h> #include "edible.h" -#include "prt.H1" -#include "edin.H1" +#include "prt.h" +#include "edin.h" void myputchar(char c) diff --git a/src/lib/wct.c b/src/lib/wct.c index 0466d84b..200d9a3d 100644 --- a/src/lib/wct.c +++ b/src/lib/wct.c @@ -64,9 +64,9 @@ #define Delimiter(c) (! isalnum(c) && c != '%' && c != '!' && c != '?' && c != '_') -#include "wct.H1" -#include "prt.H1" -#include "edin.H1" +#include "wct.h" +#include "prt.h" +#include "edin.h" |