aboutsummaryrefslogtreecommitdiff
path: root/src/rt/intrinsics/intrinsics.cpp
blob: 7c4b54500e780f60bd3f344021bc400e9f6017f4 (plain) (blame)
1
2
3
4
5
6
7
8
#include "../rust_internal.h"

extern "C" size_t
rust_intrinsic_vec_len(rust_task *task, type_desc *ty, rust_vec *v)
{
    return v->fill / ty->size;
}