diff options
author | Adam Tkac <atkac@redhat.com> | 2008-12-03 14:24:01 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2008-12-03 14:24:01 +0000 |
commit | 7269eae39fc41681ef4545b2df0070f58cdc468c (patch) | |
tree | c8c02019451e534f2c8823ba6df8c3451edee243 /common/Xregion | |
parent | 3422fbd158632894ae203f6d7fc2cddfbcbf7a73 (diff) | |
download | tigervnc-7269eae39fc41681ef4545b2df0070f58cdc468c.tar.gz tigervnc-7269eae39fc41681ef4545b2df0070f58cdc468c.zip |
[Portability] Use /**/ comments instead of // in C code
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3291 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/Xregion')
-rw-r--r-- | common/Xregion/Region.c | 3 | ||||
-rw-r--r-- | common/Xregion/Xregion.h | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/common/Xregion/Region.c b/common/Xregion/Region.c index c0b1e5a2..604ecded 100644 --- a/common/Xregion/Region.c +++ b/common/Xregion/Region.c @@ -73,10 +73,7 @@ SOFTWARE. */ #include "Xregion.h" -//#include "Xlibint.h" -//#include "Xutil.h" #include "region.h" -//#include "poly.h" #ifndef min #define min(a,b) (((a) < (b)) ? (a) : (b)) diff --git a/common/Xregion/Xregion.h b/common/Xregion/Xregion.h index e8c9a4f9..28cfa0ad 100644 --- a/common/Xregion/Xregion.h +++ b/common/Xregion/Xregion.h @@ -51,7 +51,7 @@ SOFTWARE. #ifndef _XREGION_H_ #define _XREGION_H_ -// - Faked defines to fool the X11 region code +/* - Faked defines to fool the X11 region code */ #include <stdlib.h> #include <string.h> @@ -63,7 +63,7 @@ SOFTWARE. #define NeedFunctionPrototypes 1 -// - Cribbed from Xlib.h +/* - Cribbed from Xlib.h */ typedef struct { short x, y; |