/usr/include/racket/escheme.h is in racket-common 6.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | /*
Racket
Copyright (c) 2004-2016 PLT Design Inc.
Copyright (c) 1995 Matthew Flatt
All rights reserved.
Please see the full copyright in the documentation.
libscheme
Copyright (c) 1994 Brent Benson
All rights reserved.
*/
/* This file should be included by Racket dynamically-loaded
extenstion files */
#ifndef E_SCHEME_H
#define E_SCHEME_H
#define SCHEME_DIRECT_EMBEDDED 0
#include "scheme.h"
#ifdef CODEFRAGMENT_DYNAMIC_LOAD
#pragma export on
#endif
#ifdef __cplusplus
extern "C"
{
#endif
extern Scheme_Object *scheme_initialize(Scheme_Env *global_env);
extern Scheme_Object *scheme_reload(Scheme_Env *global_env);
extern Scheme_Object *scheme_module_name(void);
#ifdef __cplusplus
}
#endif
#ifdef CODEFRAGMENT_DYNAMIC_LOAD
#pragma export off
#endif
#endif /* ! E_SCHEME_H */
|