Re-provide normalize-arity from racket/function.

This commit is contained in:
Carl Eastlund 2013-03-30 11:49:42 -04:00
parent 59b1e32fe9
commit e356c660ea

View File

@ -1,8 +1,8 @@
#lang racket/base
(require (for-syntax racket/base syntax/name))
(require (for-syntax racket/base syntax/name) racket/private/norm-arity)
(provide identity const thunk thunk* negate curry curryr)
(provide identity const thunk thunk* negate curry curryr normalize-arity)
(define (identity x) x)