diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-05-24 16:53:48 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-05-24 16:53:48 (GMT) |
commit | 611f949eb226cbeb93768939ea2ef3f642e1d0cb (patch) | |
tree | ecdb37cc566d764b269f9472fd68f6dae8239355 /unix | |
parent | 36200326cd9b185dd6af14f0b7fc9b1e74873d99 (diff) | |
download | tk-611f949eb226cbeb93768939ea2ef3f642e1d0cb.zip tk-611f949eb226cbeb93768939ea2ef3f642e1d0cb.tar.gz tk-611f949eb226cbeb93768939ea2ef3f642e1d0cb.tar.bz2 |
Make compilable with strict C99 compiler (missing declaration for XUnionRegion())
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tkUnix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/unix/tkUnix.c b/unix/tkUnix.c index f933cd2..4924728 100644 --- a/unix/tkUnix.c +++ b/unix/tkUnix.c @@ -130,6 +130,8 @@ Tk_UpdatePointer( *---------------------------------------------------------------------- */ +extern int XUnionRegion(Region srca, Region srcb, Region dr_return); + void TkpCopyRegion( TkRegion dst, |