23 lines
398 B
C
23 lines
398 B
C
//===----------------------------------------------------------------------===//
|
|
// DuckDB
|
|
//
|
|
// malloc_ncpus.h
|
|
//
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MALLOC_NCPUS_H
|
|
#define MALLOC_NCPUS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
unsigned duckdb_malloc_ncpus();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // MALLOC_NCPUS_H
|