module SassC::Native

def self.attach_function(*args)

Remove the redundant "sass_" from the beginning of every method name
def self.attach_function(*args)
  return super if args.size != 3
  if args[0] =~ /^sass_/
    args.unshift args[0].to_s.sub(/^sass_/, "")
  end
  super(*args)
end