r9310: update headers
[clsql.git] / db-oracle / alien-resources.lisp
index 14d765b023b34714d1448ce992342971eb80dfdd..3778526e932783764832a2b484344e902a3737bb 100644 (file)
@@ -1,16 +1,19 @@
-;;; -*- Mode: Lisp -*-
-;;; $Id$
-
-;;; This is copyrighted software.  See documentation for terms.
-;;; 
-;;; oracle-sql.lisp --- SQL-Interface implementation for Oracle
-;;;
-;;; derived from postgresql.lisp
-
-(in-package :clsql-oracle)
-
-(declaim (optimize (speed 3)
-                  (debug 1)))
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          alien-resources.lisp
+;;;;
+;;;; $Id$
+;;;;
+;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;;
+;;;; CLSQL users are granted the rights to distribute and use this software
+;;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+;;;; *************************************************************************
+
+(in-package #:clsql-oracle)
 
 (defparameter *alien-resource-hash* (make-hash-table :test #'equal))
 
@@ -32,7 +35,7 @@
      (unless res
        (setf res (make-alien-resource
                  :type ',type :sizeof ,size
-                 :buffer (make-alien ,type ,size)))
+                 :buffer (alien:make-alien ,type ,size)))
        (%insert-alien-resource ',type res))
      (claim-alien-resource res)))