| 1 | /* |
| 2 | * This Source Code Form is subject to the terms of the Mozilla Public |
| 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 5 | * |
| 6 | * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V. |
| 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * @a Lefteris Sidirourgos |
| 11 | * @d 30/08/2011 |
| 12 | * @+ The sampling facilities |
| 13 | */ |
| 14 | |
| 15 | #ifndef _SAMPLE_H_ |
| 16 | #define _SAMPLE_H_ |
| 17 | |
| 18 | /* #define _DEBUG_SAMPLE_ */ |
| 19 | |
| 20 | |
| 21 | #include "mal_interpreter.h" |
| 22 | |
| 23 | mal_export str |
| 24 | SAMPLEuniform(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci); |
| 25 | |
| 26 | #endif |
| 27 | |