changed: library file extension to gsc
This commit is contained in:
parent
17fceeff4b
commit
f142f6dc30
|
@ -1,5 +1,5 @@
|
|||
|
||||
import "def.gem"
|
||||
import "def.gsc"
|
||||
|
||||
type unsigned int: bool
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
# | Generic Input/Output |
|
||||
# `----------------------------------------`
|
||||
|
||||
import "def.gem"
|
||||
import "def.gsc"
|
||||
|
||||
# platform specific handle to an I/O device
|
||||
# can be a file, buffer, window or something else
|
|
@ -6,7 +6,7 @@
|
|||
# | Memory Management |
|
||||
# `----------------------------------------`
|
||||
|
||||
import "def.gem"
|
||||
import "def.gsc"
|
||||
|
||||
# Allocate `len` bytes of heap memory
|
||||
# Returns a pointer to the memory as `ptr`
|
|
@ -6,7 +6,7 @@
|
|||
# | Operating System |
|
||||
# `----------------------------------------`
|
||||
|
||||
import "def.gem"
|
||||
import "def.gsc"
|
||||
|
||||
# Return a hard coded C string identifying the underlying operating system
|
||||
# Will return one of the following:
|
|
@ -7,10 +7,10 @@
|
|||
# `----------------------------------------`
|
||||
|
||||
# standard type definitions
|
||||
import "def.gem"
|
||||
import "def.gsc"
|
||||
|
||||
# I/O operations
|
||||
import "io.gem"
|
||||
import "io.gsc"
|
||||
|
||||
# memory management
|
||||
import "mem.gem"
|
||||
import "mem.gsc"
|
Loading…
Reference in New Issue