1 /* babl - dynamically extendable universal pixel conversion library.
2  * Copyright (C) 2005, 2018 Øyvind Kolås.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 3 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, see
16  * <https://www.gnu.org/licenses/>.
17  *
18  * this is an interim file, to keep babl from complaining about double
19  * registration of cmyk formats.
20  */
21 
22 #include "config.h"
23 #include <math.h>
24 #include <string.h>
25 
26 #include "babl.h"
27 #include "base/util.h"
28 
29 int init (void);
30 
31 /* implement a hacky way to do cmyk with cairo  */
32 /* CMYKA                                        */
33 /* CMKA                                         */
34 /* CKYA                                         */
35 
36 
37 int
init(void)38 init (void)
39 {
40   return 0;
41 }
42 
43